blob: f68bdd719bfafbeee60ca3fea975bd9cd84384cd [file] [log] [blame]
module pubprivtmpla;
struct S
{
private int m = 42;
private int _get()() { return m; }
public alias get = _get!();
}