view run/b/bug_e2ir_736_C.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 81222734adf3
children
line wrap: on
line source

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

// @author@	<h3r3tic@mat.uni.torun.pl>
// @date@	2006-06-01
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=172

module dstress.run.b.bug_e2ir_736_C;

int status;

template Foo(){
	int func() {
		return status;
	}
}

class Baz{
	mixin Foo bar;
}

int main() {
	status = 3;
	Baz b = new Baz();
	if(b.bar.func() != 3){
		assert(0);
	}

	return 0;
}