Index: tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
index 686f52abc917ea3fe4b0e1d5de6ad193182b9da1..a1999de940c61fbfe85c2054b9eb8b433f65e71e 100644 |
--- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
+++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
@@ -36,8 +36,9 @@ const SOURCE = const { |
foo() => 1; |
bar(a) => !a; |
class Class { |
- int field; |
- Class(); |
+ var field; |
+ static var staticField; |
+ Class(this.field); |
} |
main() { |
foo(); |
@@ -45,7 +46,8 @@ main() { |
[]; |
{}; |
new Object(); |
- new Class(); |
+ new Class(''); |
+ Class.staticField; |
var x = null; |
return x; |
} |