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

Unified Diff: tests/compiler/dart2js_extra/variable_type_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/compiler/dart2js_extra/variable_type_test.dart
diff --git a/tests/compiler/dart2js_extra/variable_type_test.dart b/tests/compiler/dart2js_extra/variable_type_test.dart
index 067835f2787a069f9d8bbf2f8911fe165a2a2dfc..500a70b55770fc114df620544d97e3808c86d0bc 100644
--- a/tests/compiler/dart2js_extra/variable_type_test.dart
+++ b/tests/compiler/dart2js_extra/variable_type_test.dart
@@ -3,11 +3,11 @@
// BSD-style license that can be found in the LICENSE file.
int foo(int i) {
- i = 'fisk'; // /// 01: static type warning
- return 'kat'; // /// 02: static type warning, dynamic type error
+ i = 'fisk'; // //# 01: static type warning
+ return 'kat'; // //# 02: static type warning, dynamic type error
}
main() {
foo(42);
- foo('hest'); // /// 03: static type warning
+ foo('hest'); // //# 03: static type warning
}
« no previous file with comments | « tests/compiler/dart2js_extra/type_constant_switch_test.dart ('k') | tests/corelib/big_integer_arith_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698