view nocompile/mixin_04.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 774e02c900da
children
line wrap: on
line source

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

// @author@	Russ Lewis <spamhole-2001-07-16@deming-os.org>
// @date@	2004-12-22
// @uri@	news:cqcr0k$v56$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2591

// __DSTRESS_ELINE__ 20

module dstress.nocompile.mixin_04;

struct Foo() {
	int var;
}

struct Bar(T) {
	mixin Foo;
	alias Foo.var var;
}