view run/bug_mtype_2576_A.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a2f3b4e1bfe5
children 6e4063f99377
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
// @uri@	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;
}