Index: tests/language/vm/regress_27201_lib.dart |
diff --git a/tests/language/vm/regress_27201_lib.dart b/tests/language/vm/regress_27201_lib.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..98f340c985f530ff4fe7a2a3f9b66792b5652c65 |
--- /dev/null |
+++ b/tests/language/vm/regress_27201_lib.dart |
@@ -0,0 +1,20 @@ |
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
zra
2016/11/29 21:24:35
2016
bkonyi
2016/11/29 21:43:17
Done.
|
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+library import_lib; |
+ |
+final foo = 1; |
+var someVar = 3; |
+var _privateVar; |
+ |
+int get someGetter => 2; |
+ |
+void set someSetter(int val) {} |
+ |
+int someFunc() => 0; |
+ |
+class SomeClass { |
+} |
+ |
+typedef int Func(Object a); |