blob: c841916a5ff845fc30e6fe9bbb642ccd376798e4 [file] [log] [blame]
// REQUIRED_ARGS: -d
// PERMUTE_ARGS: -dw
void main()
{
class Inner
{
deprecated("With message!")
{
struct A { }
class B { }
interface C { }
union D { }
enum E { e };
//typedef int F;
alias int G;
static int H;
template I() { class I {} }
}
}
with(Inner)
{
A a;
B b;
C c;
D d;
E e;
//F f;
G g;
auto h = H;
I!() i;
}
}