www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Compiler bug? Functions as Array Properties doesn't work with nested

The spec doesn't mention anything about nested functions here.

This works

void foo(int[] a, int x) { };

void main()
{
	int[] array;
	foo(array, 3);
	array.foo(3);
}


But this gives "undefined identifier module t.foo"

void main()
{
	void foo(int[] a, int x) { };
	int[] array;
	foo(array, 3);
	array.foo(3);
}
Aug 15 2010