[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0246-21.cs
blobcf3bbb56fb7cef989e9b70c39b57076374e9daef
1 // CS0246: The type or namespace name `IBase' could not be found. Are you missing `Foo' using directive?
2 // Line: 15
4 namespace Foo {
5 public interface IBase {
6 object X { get; }
10 public interface IDerived<T> : Foo.IBase {
11 T X { get; }
14 public class Test<T> {
15 public class Y : IDerived<T>, IBase
17 public T X { get { return default (T); } }
18 object Foo.IBase.X {
19 get { return default (T); }