2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0246-21.cs
blob643d4f152ce351bd6c28cada0b6ac24fe4081489
1 // CS0246: The type or namespace name `IBase' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 155555
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); }