2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-476.cs
blobd556a900f8d8486bac83d6bc3c04d6b1cbfd4ea6
1 using System;
3 // Obsolete attribute cased early inflation of B without IFoo being defined for it
5 interface IFoo
9 class Test<T> : IFoo
11 public B First ()
13 return new B ();
16 public IFoo Second ()
18 return new B ();
21 [Obsolete]
22 public struct B : IFoo
27 class C
29 public static void Main ()