From 3454e269410590e9ea561019e7ddc97289a9cb35 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 24 Feb 2022 05:55:42 -0800 Subject: [PATCH] Test fix --- IDE/Tests/CompileFail001/src/Declarations.bf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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; + } + }; } } }