https://issues.dlang.org/show_bug.cgi?id=24269 --- Comment #1 from Nick Treleaven <nick at geany.org> --- class C { int i; synchronized void bar() { pragma(msg, typeof(i)); // shared(int) } } The pragma should print `int`. --