Is this valid C++ code?

后端 未结 4 797
迷失自我
迷失自我 2021-02-04 00:37

I had the following code, which was basically,

class foo {
  public:
    void method();
};

void foo::foo::method() { }

I had accidentally adde

4条回答
  •  抹茶落季
    2021-02-04 01:05

    Comeau online accepts it without any hickups, so it's either valid or the second bug in como I have found in almost ten years.

提交回复
热议问题