DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-7 / tests / basic-types / bug756376.vala
123456789101112
namespace Foo { const int BAR = 5; } void bar (int[] a) { } void main () { int arr[Foo.BAR]; bar (arr); }