view compile/extern_03.d @ 151:f50665879ed4

added extern(Windows/Pascal/C++) tests
author thomask
date Wed, 24 Nov 2004 09:08:58 +0000
parents
children
line wrap: on
line source

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

module dstress.compile.extern_03;

version(Windows){
	extern (Windows) int test(char c);

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