view nocompile/m/mixin_18_A.d @ 938:daa84d37520c

<bugzilla@digitalmars.com> 2006-04-01 news:e0kmjq$18ls$1@digitaldaemon.com
author thomask
date Sat, 01 Apr 2006 20:21:54 +0000
parents
children 81222734adf3
line wrap: on
line source

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

// @author@	<nail-mail@mail.ru>
// @date@	2006-03-28
// @uri@	news:bug-76-3@http.d.puremagic.com/bugzilla/

// __DSTRESS_ELINE__ 17

module dstress.nocompile.m.mixin_18_A;

struct A{
}

class C(P){
        mixin P!().T!();
}

void main(){
	C!(A) c = new C!(A);
}