dart-sdk/tests/language/prefix/new_test1.dart
Robert Nystrom 23dd8fe188 Fix imports in prefix/new_test.dart.
Change-Id: I493d99d3e8b2150902dbeb8d1a2960d24a0c185f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/200931
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
2021-05-25 12:00:30 +00:00

20 lines
421 B
Dart

// 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.
library PrefixTest1;
import "new_test2.dart" as test2;
class Prefix {
static const int foo = 43;
static getSource() {
return foo;
}
static getImport() {
return test2.Prefix.foo;
}
}