TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0246-14.cs
blob27c6c0aee715e65ec2d3bc634c32239186b68bdf
1 // CS0246: The type or namespace name `Uri' could not be found. Are you missing `System' using directive?
2 // Line: 7
4 public interface IFoo
6 string Heh { get; } // significant to cause the error.
7 Uri Hoge (); // note that it cannot be resolved here.
10 public class Foo : IFoo
12 string IFoo.Heh { get { return null; } }
13 public System.Uri Hoge () { return null; }