view compile/extern_02.d @ 1529:37c4fce34442

[Issue 1178] templates - deduction + specialization won't compile Leo Dahlmann <leo.dahlmann@gmail.com> 2007-04-23 http://d.puremagic.com/issues/show_bug.cgi?id=1178
author thomask
date Fri, 27 Apr 2007 17:32:31 +0000
parents 8a2ff09d62cb
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.compile.extern_02;

extern (D) int test(char c);

int check(){
	return test('a');
}