11 lines
120 B
C#
11 lines
120 B
C#
|
// Compiler options: -t:library
|
||
|
|
||
|
public interface IG<T>
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public interface IA
|
||
|
{
|
||
|
void Method (IG<double[][]> arg);
|
||
|
}
|