Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1929-3.cs
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
3
4 static class S
5 {
6         public static void Foo (this uint i)
7         {
8         }
9 }
10
11 class B
12 {
13         static void Main ()
14         {
15                 55.Foo ();
16         }
17 }