summaryrefslogtreecommitdiff
path: root/tests/methods/bug723009.vala
blob: d148c34c89bdc688e501334ec4a71a49f1087dcd (plain)
1
2
3
4
5
6
7
8
9
public string foo () throws Error {
	return "foo";
}

void main () {
	Value bar;
	bar = foo ();
	assert ((string) bar == "foo");
}