13 lines
167 B
C#
Raw Normal View History

// CS0103: The name `value' does not exist in the current context
// Line: 8
class X (double value)
{
public static double Prop {
get {
return value;
}
}
}