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

Unified Diff: tests/language_strong/prefix_unqualified_invocation_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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/prefix_unqualified_invocation_test.dart
diff --git a/tests/language_strong/prefix_unqualified_invocation_test.dart b/tests/language_strong/prefix_unqualified_invocation_test.dart
index 020ca3e53190ea0a3c2a2b2e7e279d90b6e09f1b..d4a174c6d989cc97f1372081ad2e0bd959ac4c43 100644
--- a/tests/language_strong/prefix_unqualified_invocation_test.dart
+++ b/tests/language_strong/prefix_unqualified_invocation_test.dart
@@ -19,11 +19,11 @@ class Base {
class Derived extends Base {
void f() {
- p(); /// 01: compile-time error
+ p(); //# 01: compile-time error
}
}
main() {
new Derived().f();
- p(); /// 02: compile-time error
+ p(); //# 02: compile-time error
}
« no previous file with comments | « tests/language_strong/prefix_identifier_reference_test.dart ('k') | tests/language_strong/private_access_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698