for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0619-2.cs
blob21a909d55cc54253a06fe7fac48b35e94324d6ae
1 // CS0619: `ObsoleteIface' is obsolete: `Do not use it.'
2 // Line: 12
4 using System;
6 [Obsolete("Do not use it.", true)]
7 interface ObsoleteIface {
11 interface Ex: ObsoleteIface