a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
225 B
C#
24 lines
225 B
C#
// Compiler options: -r:gtest-403-lib.dll
|
|
|
|
using System;
|
|
|
|
interface I {}
|
|
|
|
public struct S<T> : I
|
|
{
|
|
public void Foo ()
|
|
{
|
|
}
|
|
}
|
|
|
|
class T
|
|
{
|
|
public static void Main ()
|
|
{
|
|
S<int> i;
|
|
ExS<bool> e;
|
|
i.Foo ();
|
|
e.Bar ();
|
|
}
|
|
}
|