2010-02-09 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / gcs0619.cs
blobc4abd6a2254423d669f6b1524c8acba4b0f91101
1 // CS0619: `ObsoleteInterface<T>' is obsolete: `'
2 // Line: 15
4 using System;
6 [Obsolete("", true)]
7 interface ObsoleteInterface<T>
11 class C
13 public static void Main ()
15 var v = typeof (ObsoleteInterface<>);