| Index: tests/language_strong/f_bounded_quantification_test.dart
|
| diff --git a/tests/language_strong/f_bounded_quantification_test.dart b/tests/language_strong/f_bounded_quantification_test.dart
|
| index 133fd19cd63fd45b105c13f9473e8de1f3743431..d9cacead711ad3cb79b286ff8b43f6c0d61aec00 100644
|
| --- a/tests/language_strong/f_bounded_quantification_test.dart
|
| +++ b/tests/language_strong/f_bounded_quantification_test.dart
|
| @@ -32,22 +32,22 @@ main() {
|
| {
|
| bool got_type_error = false;
|
| try {
|
| - FBound<SubBar> fsb = new FBound<SubBar>(); /// 01: static type warning
|
| + FBound<SubBar> fsb = new FBound<SubBar>(); //# 01: static type warning
|
| } on TypeError catch (error) {
|
| got_type_error = true;
|
| }
|
| // Type error in checked mode only.
|
| - Expect.isTrue(got_type_error == isCheckedMode()); /// 01: continued
|
| + Expect.isTrue(got_type_error == isCheckedMode()); //# 01: continued
|
| }
|
| FBound<Baz<Bar>> fbb = new FBound<Baz<Bar>>();
|
| {
|
| bool got_type_error = false;
|
| try {
|
| - FBound<SubBaz<Bar>> fsb = new FBound<SubBaz<Bar>>(); /// 02: static type warning
|
| + FBound<SubBaz<Bar>> fsb = new FBound<SubBaz<Bar>>(); //# 02: static type warning
|
| } on TypeError catch (error) {
|
| got_type_error = true;
|
| }
|
| // Type error in checked mode only.
|
| - Expect.isTrue(got_type_error == isCheckedMode()); /// 02: continued
|
| + Expect.isTrue(got_type_error == isCheckedMode()); //# 02: continued
|
| }
|
| }
|
|
|