DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-5 / tests / delegates / lambda-incompatible.test
1234567891011
Invalid Code [CCode (has_target = false)] delegate void FooFunc (); void main () { int i = 0; FooFunc f = () => { i++; }; }