blob: f8e4c8ec8476f5bf11ce8c18957af472f9feea2a [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!");
}