diff --git a/IDE/Tests/CompileFail001/src/Declarations.bf b/IDE/Tests/CompileFail001/src/Declarations.bf index 13edb92d..66f95615 100644 --- a/IDE/Tests/CompileFail001/src/Declarations.bf +++ b/IDE/Tests/CompileFail001/src/Declarations.bf @@ -74,7 +74,13 @@ namespace IDETest struct AttribCAttribute : Attribute { [AttribC] //FAIL - int Val => 123; //FAIL + int Val //FAIL + { + get + { + return 123; + } + }; } } }