| Index: tests/compiler/dart2js/kernel/impact_test.dart
|
| diff --git a/tests/compiler/dart2js/kernel/impact_test.dart b/tests/compiler/dart2js/kernel/impact_test.dart
|
| index a45247d6e6401865b93dc35567516e09879b8a01..74cbeee2b9e42249e8b6851c5de62e34dcc87618 100644
|
| --- a/tests/compiler/dart2js/kernel/impact_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/impact_test.dart
|
| @@ -55,6 +55,7 @@ main() {
|
| testStringInterpolationConst();
|
| testStringJuxtaposition();
|
| testSymbol();
|
| + testConstSymbol();
|
| testTypeLiteral();
|
| testBoolFromEnvironment();
|
| testEmptyListLiteral();
|
| @@ -215,6 +216,7 @@ testStringInterpolationConst() {
|
| }
|
| testStringJuxtaposition() => 'a' 'b';
|
| testSymbol() => #main;
|
| +testConstSymbol() => const Symbol('main');
|
| testTypeLiteral() => Object;
|
| testBoolFromEnvironment() => const bool.fromEnvironment('FOO');
|
| testEmptyListLiteral() => [];
|
|
|