// PR c++/69323 template struct Outer { struct StupidValueTrick { template friend struct Outer::StupidValueTrick; }; }; typedef Outer<42>::StupidValueTrick GoodValue; GoodValue good;