mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
13 lines
145 B
C#
13 lines
145 B
C#
class Bad
|
|
{
|
|
class Super
|
|
{
|
|
public virtual void Foo() { }
|
|
}
|
|
|
|
class Sub : Super
|
|
{
|
|
public void Foo() { }
|
|
}
|
|
}
|