6 lines
109 B
C++
6 lines
109 B
C++
class ClassWithConstexprMethod {
|
|
private:
|
|
constexpr int get_int() { return 0; };
|
|
};
|
|
|