mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
118 B
C++
10 lines
118 B
C++
struct Base {
|
|
virtual void a();
|
|
virtual void b();
|
|
};
|
|
|
|
struct Derived : Base {
|
|
void a() override;
|
|
void b();
|
|
};
|