mirror of
https://github.com/github/codeql.git
synced 2026-04-19 14:04:09 +02:00
13 lines
150 B
C#
13 lines
150 B
C#
using System;
|
|
|
|
class C
|
|
{
|
|
public void M()
|
|
{
|
|
B b = new B();
|
|
b.Apply(0);
|
|
A2 a2 = new A2();
|
|
a2.Apply("");
|
|
}
|
|
}
|