blob: e6f314db3a22c0ef04a0af463c76f263058e4ca4 [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.
/// @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
}