CMake/Tests/CompileFeatures/cxx_override.cpp
2014-04-08 11:05:54 +02:00

8 lines
94 B
C++

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