Merge pull request #1821 from iainx/replace-getline
[mono-project.git] / mcs / errors / cs1929-3.cs
blobc385ca8fb878ebec1e17020e3fa596f47bd286bd
1 // CS1929: Type `int' does not contain a member `Foo' and the best extension method overload `S.Foo(this uint)' requires an instance of type `uint'
2 // Line: 15
4 static class S
6 public static void Foo (this uint i)
11 class B
13 static void Main ()
15 55.Foo ();