9aa2b61fee
Bug: https://github.com/dart-lang/sdk/issues/45101 Change-Id: Id0c9f3ce319111a79b2085f44a4e4243dbe6597a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/187440 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com>
9 lines
290 B
Dart
9 lines
290 B
Dart
// Copyright (c) 2021, 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.
|
|
// @dart=2.9
|
|
|
|
class Array<T> {
|
|
external const factory Array(int foo);
|
|
}
|