dart-sdk/tests/language_2/library11.dart
Florian Loitsch ec69c47c12 Migration of test block 126.
Change-Id: I8bbccbfae0194f246b8305ea4ca7bb02b5b6a9ec
Reviewed-on: https://dart-review.googlesource.com/7546
Commit-Queue: Florian Loitsch <floitsch@google.com>
Reviewed-by: Jakob Roland Andersen <jakobr@google.com>
2017-10-04 21:38:10 +00:00

32 lines
586 B
Dart

// 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.
//
library library11.dart;
class Library11 {
Library11(this.fld);
Library11.namedConstructor(this.fld);
func() {
return 3;
}
var fld;
static static_func() {
return 2;
}
static var static_fld = 1;
}
class Library111<T> {
Library111.namedConstructor(T this.fld);
T fld;
}
const int top_level11 = 100;
top_level_func11() {
return 200;
}