blob: 33806deb7d27d93d25f70038324b8302ea2b5983 [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 AbstractClassInstantiationError(String _className)
* Creates a new Object instance.
* @description Checks that this constructor executes without error for various
* strings.
* @author kaigorodov
*/
main() {
new AbstractClassInstantiationError("");
new AbstractClassInstantiationError("foo");
new AbstractClassInstantiationError("You are not paid to think!");
}