view run/m/mixin_28_A.d @ 1413:16360a39d709

Re: Compile time function execution... Gregor Richards <Richards@codu.org> 2007-02-15 http://www.digitalmars.com/webnews/newsgroups.php?group=digitalmars.D&article_id=48811
author thomask
date Sun, 11 Mar 2007 11:05:50 +0000
parents
children
line wrap: on
line source

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

// @author@	Gregor Richards <Richards@codu.org>
// @date@	2007-02-15
// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?group=digitalmars.D&article_id=48811
// @desc@	Re: Compile time function execution...

module dstress.run.m.mixin_28_A;

int state;

void bar(){
	state++;
}

char[] foo(){
	return "bar();";
}

int main(){
	if(0 != state){
		assert(0);
	}

	mixin(foo());

	if(1 != state){
		assert(0);
	}
	return 0;
}