DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-2 / tests / semantic / foreach-missing-iterator.test
12345678910
Invalid Code public class Test<G> { } void main () { Test<string?> test = null; foreach (var t in test) { } }