dr147.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 32 行
C
32 行
// { dg-do compile }// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>// DR147: Naming the constructor (PR 11764) namespace N1 {struct A { A(); };struct B: public A { B(); };A::A() { }B::B() { }B::A ba;A::A a; // { dg-error "" "the injected-class-name can never be found through qualified lookup" { xfail *-*-* } }}namespace N2 {// This is nasty: if we allowed the injected-class-name to be looked as a // qualified type, then the following code would be well-formed. Basically// the last line is defining the static member (with redundant parenthesis).// Instead, it should be rejected as a malformed constructor declaration.template <class T> struct A { template <class T2> A(T2); static A x;};template<> A<int>::A<int>(A<int>::x); // { dg-error "" "this is an invalid declaration of the constructor" { xfail *-*-* } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?