2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1929.cs
blob6358f368f434bdce6108107f107379cfe9795aa8
1 // CS1929: Extension method instance type `int' cannot be converted to `string'
2 // Line: 12
4 static class C
6 public static void Check (this string s)
10 static void Main ()
12 1.Check ();