blob: e5387ea20ef6052a598fdcbdd28bbb5ab01714e7 [file] [log] [blame]
// PR c++/49092
struct A
{
A();
};
int i;
A::A()
{
const int j = i;
}