Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1402)

Unified Diff: test/codegen/language/static_const_field_reserved_name_test.dart

Issue 2075493002: Add a regression test for bug #587 (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/language/static_const_field_reserved_name_test.dart
diff --git a/test/codegen/language/static_const_field_reserved_name_test.dart b/test/codegen/language/static_const_field_reserved_name_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..8c892a1a75c7e4642f43c27c9bde19ec143f98bc
--- /dev/null
+++ b/test/codegen/language/static_const_field_reserved_name_test.dart
@@ -0,0 +1,22 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+// Dart test for testing redefinition of reserved names as static const fields.
+// Bug #587.
Jennifer Messerly 2016/06/15 23:43:19 Might be worth linking the full URL: https://githu
+
+import "package:expect/expect.dart";
+
+class Field {
+ static const name = 'Foo';
+}
+
+class StaticConstFieldReservedNameTest {
+ static testMain() {
+ Expect.equals('Foo', Field.name);
+ }
+}
+
+void main() {
+ StaticConstFieldReservedNameTest.testMain();
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698