服务热线
0898-88889999
网站首页 金拱镇 西源乡 五丰镇 车辋镇 白河乡 江河镇
联系我们
电话
0898-88889999
邮箱:admin@youweb.com
地址:海南省海口市

GCC关于模板的bug?_内蒙古自治区阿拉善盟阿拉善左旗位知废金属处理设施股份公司

GCC关于模板的bug?

发布时间:2025-06-28 08:15:15   点击量:334

前一阵发现 GCC 一个 bug, 提交到了 gcc bugzilla ,已被确认,当然,这个 bug 有点刁钻:struct A { struct B {}; struct C { template void foo1(B*); template void foo2(B*) {} // ok }; template void foo1(B*); template void foo2(B*) {} // ok }; template void A::C::foo1(B*) {} // (1). fail template void A::foo1(B*) {} // (2). fail(1) (2) 两处都是合法…。

GCC关于模板的bug?