/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <type_traits>
#include <typeinfo>
using namespace std;
class Bar {
public:
static void print() {
cout << &Bar::val_ << endl;
}
private:
int val_ = 123;
};
int main()
{
Bar::print();
return 0;
}