blob: dd14db091e3579d9a757e621da6cfe4047b5d5a4 [file] [log] [blame]
// 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.
// @dart = 2.9
/// @assertion Attempting to instantiate Null causes a run-time error.
/// @description Checks that Null cannot be instantiated.
/// @author rodionov
main() {
new Null();
// ^
// [analyzer] unspecified
// [cfe] unspecified
}