view run/bug_mtype_2576_A.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents a2f3b4e1bfe5
children 52c9e86b6486
line wrap: on
line source

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

// @author@	J Anderson <REMOVEanderson@badmama.com.au>
// @date@	2004-05-18
// @uri@	news:c8c0uk$229r$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/205

module dstress.run.bug_mtype_2576_A;

struct Standard
{
   
    struct NodeLeaf(NodeInfo, LeafInfo)
    {
        struct Node
        {
            NodeInfo info;
        }
       
        struct Leaf
        {
            LeafInfo info;
        }
       
    }
   
}

struct NodeInfo {  }
struct LeafInfo {  }

alias Standard.NodeLeaf!(NodeInfo, LeafInfo).Node Node;

int main( char[][] args ){
    return 0;
}