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