blob: 57977cc2631f5c0c05e0b6cd3e979140c37e22b1 [file] [log] [blame]
// 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';
test() {
new Class._private(); // Error
new Class._privateInjected(); // Error
}
main() {
new Class.generative();
const Class.constGenerative();
}