blob: cd816334933a0e99a374617fdc321c1db61a5de5 [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 It is a static warning if the static type of id is not assignable
* to Tid.
* @description Checks that it is a compile error if the static type of id is
* not assignable to Tid.
* @compile-error
* @author msyabro
*/
class C {
C(int this.id) {}
String id;
}
main() {
new C(42);
}