tests: Add "gtktemplate" test to increase coverage
[vala-gnome.git] / tests / semantic / foreach-iterator-void.test
blob1b147bdd95b3732f2b7ab0dd658ed6bf3d59966b
1 Invalid Code
3 public class Test<G> {
4         public void iterator () {
5                 return;
6         }
9 void main () {
10         Test<string?> test = null;
11         foreach (var t in test) {
12         }