⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 local1.c

📁 linux下的gcc编译器
💻 C
字号:
// PR c++/4286: We were crashing when trying to set up the class bindings in// g(), because xref wanted the mangled name, which breaks inside a template.// Of course, the offending code is actually ill-formed anyway, so check// for the error.  Also check that it's formatted properly.struct A{  template<class T> void f();};template<class T> void A::f(){  struct B  {    void g() {}    static int x;	// { dg-error "static.*`int A::f\\(\\)::B::x'" "" }  };}int main (){  A a;  a.f<int> ();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -