Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Label implements IEquatable<Label> #35673

Merged
merged 5 commits into from
Apr 6, 2019
Merged
Changes from 1 commit
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
Next Next commit
Label implements IEquatable<Label>
  • Loading branch information
foxtrek64 committed Mar 24, 2019
commit 94e37e42ddbb49a6412d04c9dd3e31fa1dd5e9ad
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public virtual void MarkLabel(System.Reflection.Emit.Label loc) { }
public virtual void ThrowException(System.Type excType) { }
public virtual void UsingNamespace(string usingNamespace) { }
}
public partial struct Label
public partial struct Label : IEquatable<System.Reflection.Emit.Label>
{
private int _dummyPrimitive;
public override bool Equals(object obj) { throw null; }
Expand Down