File: instance-comparison.vala

package info (click to toggle)
vala 0.56.18-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,528 kB
  • sloc: ansic: 581,293; sh: 5,357; makefile: 3,980; xml: 3,161; yacc: 1,219; lex: 374; javascript: 23
file content (54 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (4)
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 ();
		}
	}
}