[ create a new paste ] login | about

Link: http://codepad.org/3muVCfgM    [ raw code | fork ]

C++, pasted on Jan 21:
1
2
3
4
5
6
7
8
9
10
11
12
namespace A {
class A {
    public:
    static void foo() {}
};
} //namespace A

int main()
{
    A::A::foo();
    return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: