Index: tests/language/prefix14_test.dart |
diff --git a/tests/language/prefix14_test.dart b/tests/language/prefix14_test.dart |
index a7cec0a1e7cad7f11f828df7c211db4d2f73d4cb..22e83d5e824cbb39110806238362e971ca4600bf 100644 |
--- a/tests/language/prefix14_test.dart |
+++ b/tests/language/prefix14_test.dart |
@@ -5,6 +5,7 @@ |
// Use qualified symbols at various places. |
library Prefix14Test.dart; |
+ |
import "package:expect/expect.dart"; |
import "library12.dart" as lib12; |
@@ -16,16 +17,17 @@ class myInterface implements lib12.Library12Interface { |
myfld.fld = (value1.fld + value2.fld + myfld.fld); |
return myfld; |
} |
+ |
lib12.Library12 myfld; |
} |
- |
class myClass extends lib12.Library12 { |
myClass(int value) : super(value); |
static lib12.Library12 func1() { |
var i = new lib12.Library12(10); |
return i; |
} |
+ |
static lib12.Library12 func2(lib12.Library12 param) { |
return param; |
} |