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

Unified Diff: pkg/kernel/testcases/reify/native_types_test.dart

Issue 2696283006: Add multitest markers to reify test (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/reify/native_types_test.dart
diff --git a/pkg/kernel/testcases/reify/native_types_test.dart b/pkg/kernel/testcases/reify/native_types_test.dart
index a3514534ec7513f264fa177644d050793eaab5a7..08de3598e3457961e4517c35c033f8c08190c651 100644
--- a/pkg/kernel/testcases/reify/native_types_test.dart
+++ b/pkg/kernel/testcases/reify/native_types_test.dart
@@ -30,9 +30,9 @@ main() {
expectTrue(true is! int);
// Test error and exception classes
- expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError);
+ expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError); /// 01: static type warning
- expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError);
+ expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError); /// 02: static type warning
expectThrows(() => foo, (e) => e is CyclicInitializationError);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698