Files
codeql/csharp/ql/test/library-tests/locations/C.cs
2025-09-30 11:33:17 +02:00

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("");
}
}