cmake/Tests/CompileFeatures/cxx_override.cpp
2015-04-27 22:25:09 +02:00

8 lines
94 B
C++

struct A {
virtual void doNothing() {}
};
struct B : A {
void doNothing() override {}
};