mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
447 B
35 lines
447 B
internal class Issue3406 |
|
{ |
|
private record struct S1(int Value); |
|
|
|
private record struct S2 |
|
{ |
|
public int Value; |
|
|
|
public S2(int value) |
|
{ |
|
Value = value; |
|
} |
|
|
|
public S2(int a, int b) |
|
{ |
|
Value = a + b; |
|
} |
|
} |
|
|
|
private record struct S3 |
|
{ |
|
public int Value; |
|
|
|
public S3(int value) |
|
{ |
|
Value = value; |
|
} |
|
} |
|
|
|
// This also generates a hidden backing field |
|
private record struct S4(int value) |
|
{ |
|
public int Value = value; |
|
} |
|
} |