dart-sdk/tests/language/library11.dart
Robert Nystrom 5ed88471ec Migrate language_2/function to NNBD.
Change-Id: I0726fa252736a83a2d80345d71c05aacf8ed0649
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142941
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
2020-04-25 01:53:20 +00:00

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