1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00
This commit is contained in:
Brian Fiete 2022-02-24 05:55:42 -08:00
parent 4f8426d8f1
commit 3454e26941

View file

@ -74,7 +74,13 @@ namespace IDETest
struct AttribCAttribute : Attribute
{
[AttribC] //FAIL
int Val => 123; //FAIL
int Val //FAIL
{
get
{
return 123;
}
};
}
}
}