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

Unified Diff: tests/language/src/ConstConstructorSyntaxTest.dart

Issue 10248007: test rename overhaul: step 8 - language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/src/ConditionBailoutTest.dart ('k') | tests/language/src/ConstCounterNegativeTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/ConstConstructorSyntaxTest.dart
diff --git a/tests/language/src/ConstConstructorSyntaxTest.dart b/tests/language/src/ConstConstructorSyntaxTest.dart
deleted file mode 100644
index ebbc33481a3173fe095cb69546444a90094641c6..0000000000000000000000000000000000000000
--- a/tests/language/src/ConstConstructorSyntaxTest.dart
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-main() {
- var c0 = const C0(); /// 01: compile-time error
- var i0 = const I0(); /// 02: compile-time error
- var c1 = const C1();
- var c2 = const C2(); /// 03: compile-time error
- var c3 = const C3();
-}
-
-interface I0 default C0 {
- I0();
-}
-
-class C0 implements I0 {
- C0();
-}
-
-class C1 {
- const C1();
- var modifiable; /// 04: compile-time error
-}
-
-class C2 {
- C2();
-}
-
-class C3 {
- const C3()
- : field = new C0() /// 05: compile-time error
- ;
- final field = null;
-}
« no previous file with comments | « tests/language/src/ConditionBailoutTest.dart ('k') | tests/language/src/ConstCounterNegativeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698