1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-05 15:56:00 +02:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Brian Fiete 2023-01-23 06:57:06 -05:00
commit 59f074ba83
2 changed files with 31 additions and 15 deletions

View file

@ -505,11 +505,21 @@ namespace System
[AttributeUsage(.Method | .Constructor | .Class | .Struct | .Alias | .Interface | .Property)]
public struct ObsoleteAttribute : Attribute
{
public this()
{
}
public this(bool isError)
{
}
public this(String error)
{
}
public this(String error, bool isError)
{