We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f4948 commit da6bb18Copy full SHA for da6bb18
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 14ddfb7aac9d8e75c96d2395404a5937b22a149f
+refs/heads/master: bbf2eef54b435d3850ce97c3bb162de322221922
trunk/tests/language/regress_22936_test.dart
@@ -15,12 +15,10 @@ foo() {
15
16
main() {
17
final x = null;
18
- bool assignmentFailed = false;
19
try {
20
- x = foo();
+ x = /// 01: static type warning
+ foo();
21
} on NoSuchMethodError {
22
- assignmentFailed = true;
23
}
24
Expect.isTrue(fooCalled);
25
- Expect.isTrue(assignmentFailed);
26
0 commit comments