fork download
  1. #include <iostream>
  2.  
  3. struct foo
  4. {
  5. static constexpr int value = 42;
  6. };
  7.  
  8. void bar(const int* value) { std::cout << *value; }
  9. int main() { bar(&foo::value); }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
42