| Index: tests/language_strong/getter_no_setter_test.dart
|
| diff --git a/tests/language_strong/getter_no_setter_test.dart b/tests/language_strong/getter_no_setter_test.dart
|
| index 62233fde2026a01708732ba38ff7f499f46c32f8..2e78524964076760837f328509c172c256649aa5 100644
|
| --- a/tests/language_strong/getter_no_setter_test.dart
|
| +++ b/tests/language_strong/getter_no_setter_test.dart
|
| @@ -21,16 +21,16 @@ class Example {
|
| {
|
| bool flag_exception = false;
|
| try {
|
| - this.nextVar = 1; /// 00: static type warning
|
| + this.nextVar = 1; //# 00: static type warning
|
| } catch (excpt) {
|
| flag_exception = true;
|
| }
|
| - Expect.isTrue(flag_exception); /// 00: continued
|
| + Expect.isTrue(flag_exception); //# 00: continued
|
| }
|
| }
|
| static test() {
|
| - nextVar = 0; /// 01: runtime error
|
| - this.nextVar = 0; /// 02: compile-time error
|
| + nextVar = 0; //# 01: runtime error
|
| + this.nextVar = 0; //# 02: compile-time error
|
| }
|
| }
|
|
|
|
|