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

Unified Diff: pkg/kernel/testcases/input/override.dart

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 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 | « pkg/kernel/testcases/input/optional.dart ('k') | pkg/kernel/testcases/input/prefer_baseclass.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/input/override.dart
diff --git a/pkg/kernel/testcases/input/override.dart b/pkg/kernel/testcases/input/override.dart
deleted file mode 100644
index fbecca9fd2602fd2df8b29db948c0202f2b930e3..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/input/override.dart
+++ /dev/null
@@ -1,21 +0,0 @@
-class Foo {}
-
-class Bar extends Foo {}
-
-class Base {
- Foo method() {
- return new Foo();
- }
-}
-
-class Sub extends Base {
- Foo method() {
- return new Bar();
- }
-}
-
-main(List<String> args) {
- var object = args.length == 0 ? new Base() : new Sub();
- var a = object.method();
- print(a);
-}
« no previous file with comments | « pkg/kernel/testcases/input/optional.dart ('k') | pkg/kernel/testcases/input/prefer_baseclass.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698