view compile/m/mixin_29_A.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 088bb4a67d95
children
line wrap: on
line source

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

// @author@	Bob W <nospam@aol.com>
// @date@	2007-01-27
// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
// @desc@	Re: DMD 1.004 release

module dstress.compile.m.mixin_29_A;

template Mix() {
	int i;
}

struct Z {
	union {
		mixin Mix!();
	}
}