Release 0.41.92
[vala-gnome.git] / tests / semantic / foreach-next-get-args.test
blobdc784db735d25a6ffe4f9793cfcca9c87395355e
1 Invalid Code
3 public class Iterator<G> {
4         public bool next () {
5                 return true;
6         }
8         public G get (int arg) {
9                 return (G)null;
10         }
13 public class Test<G> {
14         public Iterator<G> iterator () {
15                 return new Iterator<G> ();
16         }
19 void main () {
20         Test<string?> test = null;
21         foreach (var t in test) {
22         }