|
|
|
@ -4,11 +4,11 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty.StaticAbstractInterfaceM
@@ -4,11 +4,11 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty.StaticAbstractInterfaceM
|
|
|
|
|
{ |
|
|
|
|
public interface I |
|
|
|
|
{ |
|
|
|
|
abstract static int Capacity { get; } |
|
|
|
|
abstract static int Count { get; set; } |
|
|
|
|
abstract static int SetterOnly { set; } |
|
|
|
|
abstract static event EventHandler E; |
|
|
|
|
abstract static I CreateI(); |
|
|
|
|
static abstract int Capacity { get; } |
|
|
|
|
static abstract int Count { get; set; } |
|
|
|
|
static abstract int SetterOnly { set; } |
|
|
|
|
static abstract event EventHandler E; |
|
|
|
|
static abstract I CreateI(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public class X : I |
|
|
|
@ -72,7 +72,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty.StaticAbstractInterfaceM
@@ -72,7 +72,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty.StaticAbstractInterfaceM
|
|
|
|
|
|
|
|
|
|
public interface IGetNext<T> where T : IGetNext<T> |
|
|
|
|
{ |
|
|
|
|
abstract static T operator ++(T other); |
|
|
|
|
static abstract T operator ++(T other); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public struct WrappedInteger : IGetNext<WrappedInteger> |
|
|
|
|