www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - doc not generated for template instance alias

For the following module, documentation for "bar" is not generated while all
the 
rest is ok. Tested with GDC 0.17.

/// class doc
class A
{
         /// some doc
         template foo(T)
         {
                 /// more doc
                 void foo(T t)
                 {}
         }
	
	alias foo!(int) bar; /// even more doc

	alias int myint; /// alias doc
}


-- 
Carlos Santander Bernal
May 14 2006