blob: 52b1c5a458db24950ce0dbb25f35fd1bc10d354c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0103: The name `value' does not exist in the current context
// Line: 8
// Compiler options: -langversion:experimental
class X (double value)
{
public static double Prop {
get {
return value;
}
}
}
|