Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs0103-13.cs
1 // CS0103: The name `value' does not exist in the current context
2 // Line: 8
3
4 class X (double value)
5 {
6         public static double Prop {
7                 get {
8                         return value;
9                 }
10         }
11 }
12