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

Unified Diff: tests/language_2/type_variable_static_context_test.dart

Issue 3008723002: Migrate block 163 to Dart 2.0. (Closed)
Patch Set: Merge fixups Created 3 years, 4 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 | « tests/language_2/type_variable_scope_test.dart ('k') | tests/language_2/type_variable_typedef_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_2/type_variable_static_context_test.dart
diff --git a/tests/language_strong/type_variable_static_context_negative_test.dart b/tests/language_2/type_variable_static_context_test.dart
similarity index 75%
rename from tests/language_strong/type_variable_static_context_negative_test.dart
rename to tests/language_2/type_variable_static_context_test.dart
index 6e9688d7425193ccfe2a305f0ca261be63298282..e0cd2bc2902a17abedc9a8193781b8a2546bc31b 100644
--- a/tests/language_strong/type_variable_static_context_negative_test.dart
+++ b/tests/language_2/type_variable_static_context_test.dart
@@ -6,8 +6,9 @@
class A<T> {
static int method() {
+ // error, can't reference a type variable in a static context
var foo =
- new T(); // error, can't reference a type variable in a static context
+ new T(); /*@compile-error=unspecified*/
}
}
« no previous file with comments | « tests/language_2/type_variable_scope_test.dart ('k') | tests/language_2/type_variable_typedef_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698