// PR c++/89682 template class C { class TagType {}; public: C(int, TagType = makeTag()); private: static TagType makeTag(); }; void test() { C(1); }