mirror of
https://github.com/github/codeql.git
synced 2026-04-14 11:34:00 +02:00
14 lines
247 B
C#
14 lines
247 B
C#
public partial class Multiple { }
|
|
|
|
public partial class MultipleGeneric<S> { }
|
|
|
|
public class Multiple1Specific
|
|
{
|
|
public static (int, string) M()
|
|
{
|
|
(int, string) x = (0, "");
|
|
(int, int) y = (0, 0);
|
|
return x;
|
|
}
|
|
}
|