summaryrefslogtreecommitdiff
path: root/tests/basic-types/bug788775.vala
blob: bd92a946d233e2eee46dca845bfc5703a12b1059 (plain)
1
2
3
4
5
6
7
8
9
10
void test_compile_only () {
	try {
		var file = new KeyFile ();
		var list = file.get_string_list ("foo", "bar");
	} catch (KeyFileError e) {
	}
}

void main () {
}