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 5a53d16a4dbd56c3d95585806b6bf4e2d4b73535..33d2ddf00c7865ee6da8101ca4533b63fd1ae1d6 100644 |
--- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
+++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart |
@@ -35,12 +35,14 @@ const SOURCE = const { |
'main.dart': ''' |
foo() => 1; |
bar(a) => !a; |
+class Class {} |
main() { |
foo(); |
bar(true); |
[]; |
{}; |
new Object(); |
+ new Class(); |
var x = null; |
return x; |
} |