Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proposals/csharp-11.0/static-abstracts-in-interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface IAddable<T> where T : IAddable<T>
// Classes and structs (including built-ins) can implement interface
struct Int32 : …, IAddable<Int32>
{
static Int32 I.operator +(Int32 x, Int32 y) => x + y; // Explicit
static Int32 IAddable<Int32>.operator +(Int32 x, Int32 y) => x + y; // Explicit
public static int Zero => 0; // Implicit
}

Expand Down