[Issue 7815] Mixin template forward reference (?) regression

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Apr 7 18:18:51 PDT 2012


http://d.puremagic.com/issues/show_bug.cgi?id=7815



--- Comment #6 from Walter Bright <bugzilla at digitalmars.com> 2012-04-07 18:19:31 PDT ---
Reduced test case:
-----------------------
enum Closure {
    Matrix
}

struct BasicMatrix {
    mixin Operand!( Closure.Matrix );
}

template Operand( Closure closure_ ) {
    alias closure_ closure;
}

alias BasicMatrix.closure Foo;

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list