Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0619-57.cs
1 // CS0619: `IB' is obsolete: `hint'
2 // Line: 20
3
4 using System;
5
6 public interface IA
7 {
8         #pragma warning disable 619
9         void Foo<T> () where T : IB;
10         #pragma warning restore 619
11 }
12
13 [Obsolete ("hint", true)]
14 public interface IB
15 {
16 }
17
18 public class C : IA
19 {
20         void IA.Foo<X> ()
21         {
22         }
23 }