b05892efa1
Closes #46123 Change-Id: I91e9b789683b2bd6acb3b4f559ecce6e70f18afc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/207001 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
11 lines
308 B
Dart
11 lines
308 B
Dart
// Copyright (c) 2020, 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.
|
|
|
|
import 'dart:test';
|
|
|
|
main() {
|
|
new Class.generative();
|
|
const Class.constGenerative();
|
|
}
|