tests: Add invalid "control-semantic" tests to increase coverage
[vala-gnome.git] / tests / control-semantic / argument-incompatible-type-out.test
blob698476428310371a1ff7eb79530b89b62b1d5dd5
1 Invalid Code
3 void foo (out string arg) {
6 void main () {
7         int i;
8         foo (out i);