| Index: tests/language/const_getter_test.dart
|
| diff --git a/tests/language/const_getter_test.dart b/tests/language/const_getter_test.dart
|
| index 97717e89fae6f37d07666e6551804b3d63b998df..487dcd99bf1f837c5303da3f6b046653de157622 100644
|
| --- a/tests/language/const_getter_test.dart
|
| +++ b/tests/language/const_getter_test.dart
|
| @@ -9,11 +9,11 @@ import 'package:expect/expect.dart';
|
| class C {
|
| const C();
|
|
|
| - const /// 01: compile-time error
|
| + const //# 01: compile-time error
|
| get x => 1;
|
| }
|
|
|
| -const /// 02: compile-time error
|
| +const //# 02: compile-time error
|
| get y => 2;
|
|
|
| main() {
|
|
|