// Compiler options: -r:gtest-403-lib.dll using System; interface I {} public struct S : I { public void Foo () { } } class T { public static void Main () { S i; ExS e; i.Foo (); e.Bar (); } }