blob: 6c5f0c7dd066bef05bf69a051c49a2244bb55296 [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 Undocumented
* @description Checks that this method executes without errors.
* @author rodionov
* @reviewer pagolubev
* @needsreview undocumented
*/
main() {
new Object().toString();
const Object().toString();
(new Object() as dynamic).toString();
(const Object() as dynamic).toString();
}