mirror of
https://github.com/github/codeql.git
synced 2026-04-14 19:44:03 +02:00
9 lines
114 B
C#
9 lines
114 B
C#
public class Sub : Base<int>
|
|
{
|
|
public void SubM()
|
|
{
|
|
M();
|
|
var x = new InnerBase();
|
|
}
|
|
}
|