1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
interface IFoo : Object {
}
class Bar : Object, IFoo {
}
class Manam : Bar {
}
interface IFaz : Object, IFoo {
}
class Baz : Object, IFoo, IFaz {
}
void main () {
{
Bar bar = new Bar ();
IFoo foo = bar;
if (foo != bar) {
assert_not_reached ();
} else if (foo == bar) {
// Well done
} else {
assert_not_reached ();
}
}
{
IFaz faz = new Baz ();
IFoo foo = faz;
if (faz != foo) {
assert_not_reached ();
} else if (foo == faz) {
// Well done
} else {
assert_not_reached ();
}
}
{
Manam manam = new Manam ();
Bar bar = manam;
if (manam != bar) {
assert_not_reached ();
} else if (manam == bar) {
// Well done
} else {
assert_not_reached ();
}
}
}
|