Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs1929.cs
1 // CS1929: Extension method instance type `int' cannot be converted to `string'
2 // Line: 12
3
4 static class C
5 {
6         public static void Check (this string s)
7         {
8         }
9
10         static void Main ()
11         {
12                 1.Check ();
13         }
14 }