From bfc7d21da61c8e27f115fb76f88d7280fa308cf2 Mon Sep 17 00:00:00 2001 From: Stephen Adams Date: Mon, 8 Jul 2019 23:27:12 +0000 Subject: [PATCH] Remove useless dart2js_extra/class_test TBR=johnniwinther@google.com Change-Id: I2c6b08f139e3404961a91166d6f2393e935ccd0f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/108368 Reviewed-by: Stephen Adams Commit-Queue: Stephen Adams --- tests/compiler/dart2js_extra/class_test.dart | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 tests/compiler/dart2js_extra/class_test.dart diff --git a/tests/compiler/dart2js_extra/class_test.dart b/tests/compiler/dart2js_extra/class_test.dart deleted file mode 100644 index d7b33ba4ff8..00000000000 --- a/tests/compiler/dart2js_extra/class_test.dart +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2011, 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. - -class Foo { - fisk() { - print('in fisk'); - } -} - -void main() { - // TODO(ahe): Should be "new Foo()" instead of "null". - Foo x = null; - x.fisk(); -}