DEBSOURCES
Skip Quicknav
sources / vala / 0.56.3-1 / tests / nullability / with-non-null.test
123456789101112
Invalid Code class Foo { public int i; } void main () { Foo? f = new Foo (); with (f) { i = 7; } }