blob: 3f254fec20f7d6661aac340455c2345965d67a8b [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 Type aliases are restricted to function types.
* @description Checks that it is impossible to introduce alias for a class type (C style).
* @author iefremov
* @reviewer rodionov
* @compile-error
*/
class A {}
typedef A B;
main() {
try {
new A();
} catch(x) {}
}