blob: 9652d00b64b33f1ed50418075021f8dc34b401cd [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 In checked mode, it is a dynamic type error if o is not null and the interface
* of the class of o is not a subtype of the actual type of v.
* @description Checks that it is a dynamic type error if the interface of
* the class of o is not a subtype of the actual type of v
* @author msyabro
* @reviewer kaigorodov
*/
import "../../Utils/dynamic_check.dart";
f(x) {return x;}
class A {}
class B extends A {}
main() {
int v;
checkTypeError( () {
v = f(true); //to avoid static warning
});
checkTypeError( () {
v = f(""); //to avoid static warning
});
checkTypeError( () {
v = f(0.2); //to avoid static warning
});
B b;
checkTypeError( () {
b = f(new A()); //to avoid static warning
});
}