DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-5 / tests / delegates / lambda-outer-constant.test
1234567891011
Invalid Code delegate void FooFunc (); void main () { const int FOO = 23; FooFunc foo = () => { var i = FOO; }; }