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