view run/i/is_04_E.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents f616cdfe7b96
children
line wrap: on
line source

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

module dstress.run.i.is_04_E;

class Y{
}

typedef Y X;

int main(){
	static if(is(X == typedef) == 1){
		static if(is(X == Y) == 0){
			return 0;
		}else{
			static assert (0);
		}
	}
}