funky property error with assoc array
    Dan 
    dbdavidson at yahoo.com
       
    Wed Nov 14 11:52:16 PST 2012
    
    
  
This fails to compile when accessing as m.pgoo() complaining
about postblit.
What is wrong with this?
Note: If I alias as array instead of map: alias const(X)[] Map;
it compiles fine.
Thanks
Dan
-----------------------------
struct X { this(this) {} }
alias const(X)[string] Map;
@property int pgoo(ref Map x) { return 3; }
void main() {
    Map m;
    pgoo(m);
    m.pgoo();
}
    
    
More information about the Digitalmars-d-learn
mailing list