Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0246-14.cs
1 // CS0246: The type or namespace name `Uri' could not be found. Are you missing `System' using directive?
2 // Line: 7
3
4 public interface IFoo
5 {
6         string Heh { get; } // significant to cause the error.
7         Uri Hoge (); // note that it cannot be resolved here.
8 }
9
10 public class Foo : IFoo
11 {
12         string IFoo.Heh { get { return null; } }
13         public System.Uri Hoge () { return null; }
14 }
15