https://issues.dlang.org/show_bug.cgi?id=11946
Jacob Carlborg <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #39 from Jacob Carlborg <[email protected]> --- I'm not sure if this is related but I have a similar case as Vladimir's first post: module foo; static int f(A...)() { pragma(msg, typeof(A)); return 0; } module bar; import foo; struct S { private int x; enum y = f!x(); } Here "x" is private and I'm accessing the tuple in "f". The error I get is " Error: struct bar.S member x is not accessible". This worked fine in DMD 2.064.2. --
