Index: tests/language/function_type/function_type10_test.dart |
diff --git a/tests/language/function_type/function_type10_test.dart b/tests/language/function_type/function_type10_test.dart |
index a68960a1c93c64db0a347aa7a6fa70193bbd9b78..af95f76e7229cce2d9643f1588dec2ec25e13bfa 100644 |
--- a/tests/language/function_type/function_type10_test.dart |
+++ b/tests/language/function_type/function_type10_test.dart |
@@ -19,9 +19,15 @@ import 'package:expect/expect.dart'; |
@AssumeDynamic() |
confuse(f) => f; |
-final bool inCheckedMode = |
- (() { bool result = false; assert(result = true); return result; })(); |
- |
+final bool inCheckedMode = (() { |
+ try { |
+ var i = 42; |
+ String s = i; |
+ } on TypeError catch (e) { |
+ return true; |
+ } |
+ return false; |
+})(); |
sra1
2017/05/19 16:51:35
Looking at this large duplication I think we shoul
eernst
2017/05/23 17:09:55
The duplication is slightly deceptive here because
|
typedef F0<T> = int Function(int y, {int x}); |
typedef F1<T> = Function Function(int y, {List<T> x}); |