ignores
[mcs.git] / errors / cs0246-14.cs
blob7b1e04cb1b6cd37706c25549b254c78ceaad4cd1
1 // cs0246-14.cs: The type or namespace name `Uri' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 7
4 // This bug actual checks that the compiler doesn't crash
6 public interface IFoo
8 string Heh { get; } // significant to cause the error.
9 Uri Hoge (); // note that it cannot be resolved here.
12 public class Foo : IFoo
14 string IFoo.Heh { get { return null; } }
15 public System.Uri Hoge () { return null; }