Skip to content

Commit

Permalink
Add DefaultMemberAttribute to Test.CoreLib (#108258)
Browse files Browse the repository at this point in the history
Fixes #107953.

Co-authored-by: Michal Strehovský <[email protected]>
Co-authored-by: Jeff Schwartz <[email protected]>
  • Loading branch information
3 people authored Oct 10, 2024
1 parent 6193a1f commit dd3bd1d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/coreclr/nativeaot/Runtime.Base/src/System/Attribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ public abstract class Attribute
{
}
}

namespace System.Reflection
{
public sealed class DefaultMemberAttribute : Attribute
{
public DefaultMemberAttribute(string memberName) { }
}
}

0 comments on commit dd3bd1d

Please sign in to comment.