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.
29 lines
531 B
29 lines
531 B
#if !OPT |
|
using System.Diagnostics; |
|
#endif |
|
using System.Runtime.CompilerServices; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Ugly; |
|
|
|
internal class NoGetterOnlyAutomaticProperties |
|
{ |
|
[CompilerGenerated] |
|
#if !OPT |
|
[DebuggerBrowsable(DebuggerBrowsableState.Never)] |
|
#endif |
|
private readonly int GetOnly__BackingField; |
|
|
|
public int GetOnly { |
|
[CompilerGenerated] |
|
get { |
|
return GetOnly__BackingField; |
|
} |
|
} |
|
|
|
public int WithSetter { get; set; } |
|
|
|
public NoGetterOnlyAutomaticProperties() |
|
{ |
|
GetOnly__BackingField = 5; |
|
} |
|
}
|
|
|