Chromium Code Reviews| 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(); |
| +} |