15 lines
180 B
C#
15 lines
180 B
C#
|
// Compiler options: -r:gtest-534-lib.dll
|
||
|
|
||
|
class A : IA
|
||
|
{
|
||
|
public void Method (IG<double[][]> arg)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
new A ().Method (null);
|
||
|
return 0;
|
||
|
}
|
||
|
}
|