fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Range
  5. {
  6. };
  7.  
  8. struct Foo
  9. {
  10. void Range(int x, Range** r){ } //!< This is OK.
  11. Foo(int x, ::Range** r) { } //!< This is Not OK, Why?
  12. };
  13.  
  14. int main() {
  15. // your code goes here
  16. return 0;
  17. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty