blob: 1a3fd262f607a4eab4d3b18fede9c7a3b20940e2 [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.
* @compile-error
* @author rodionov
*/
main() {
new Null();
}