summaryrefslogtreecommitdiff
path: root/tests/control-flow/assigned-local-variable.vala
blob: 43ce755e1eb353015c2921aa23c05653d773b81a (plain)
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
55
56
57
58
59
60
61
62
63
64
65
bool foo (out string? s) {
	s = "foo";
	return true;
}

int bar () {
	return 42;
}

void main () {
	{
		string? s;
		if (!foo (out s) || s == null) {
			assert_not_reached ();
		}
	}
	{
		int i;
		if ((i = bar ()) > 42 || i < 23) {
			assert_not_reached ();
		}
	}
	{
		int i;
		if ((i = bar ()) > 42 && i < 23) {
			assert_not_reached ();
		}
	}

	{
		string? s;
		while (!foo (out s) || s == null) {
			assert_not_reached ();
		}
	}
	{
		int i;
		while ((i = bar ()) > 42 || i < 23) {
			assert_not_reached ();
		}
	}
	{
		int i;
		while ((i = bar ()) > 42 && i < 23) {
			assert_not_reached ();
		}
	}

	{
		string? s;
		assert (!foo (out s) || s == null ? false : true);
	}
	{
		string? s;
		assert (!foo (out s) && s == null ? false : true);
	}
	{
		int i;
		assert ((i = bar ()) > 42 || i < 23 ? false : true);
	}
	{
		int i;
		assert ((i = bar ()) > 42 && i < 23 ? false : true);
	}
}