mirror of
https://github.com/github/codeql.git
synced 2026-04-03 14:18:17 +02: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() { }
|
|
}
|
|
}
|