blob: a7299b98672dc3f78a346d87914e1e008fb1e4f0 [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 Evaluation of the is-expression e is T proceeds as follows:
* The expression e is evaluated to a value v.
* Then, if T is malformed or deferred type, a dynamic error occurs.
* Otherwise, if the interface of the class of v is a subtype of T, the
* is-expression evaluates to true.
* Otherwise it evaluates to false.
* @description Checks that if T is parameterized type and G is generic type
* which has more then n type parameters, then it is a compile error
* @compile-error
* @author msyabro
*/
class G<T, U, V> {}
main() {
new G() is G<int, bool>;
}