Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Unified Diff: tests/language_strong/callable_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/callable_test.dart
diff --git a/tests/language_strong/callable_test.dart b/tests/language_strong/callable_test.dart
index 7865d2015e4d4fe4021b0b1aa67cdfdaccb8d5a9..1ff647bf951d959748cab97698956907a5fd3fff 100644
--- a/tests/language_strong/callable_test.dart
+++ b/tests/language_strong/callable_test.dart
@@ -36,8 +36,8 @@ main() {
Y y = new Y();
Function g = y; // Should pass checked mode test
F f0 = y; // Should pass checked mode test
- F f1 = x; /// 00: dynamic type error, static type warning
- G g0 = y; /// 01: dynamic type error, static type warning
+ F f1 = x; //# 00: dynamic type error, static type warning
+ G g0 = y; //# 01: dynamic type error, static type warning
Expect.equals(f(), 42);
Expect.equals(g(100), 187);

Powered by Google App Engine
This is Rietveld 408576698