From 8bc5d097879504d2cab7cadbea05ad2ef6883592 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Wed, 15 Dec 2021 17:06:43 -0500 Subject: [PATCH] Error text fix --- IDE/Tests/CompileFail001/src/Generics.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/Tests/CompileFail001/src/Generics.bf b/IDE/Tests/CompileFail001/src/Generics.bf index 8a27fbf4..6f851c63 100644 --- a/IDE/Tests/CompileFail001/src/Generics.bf +++ b/IDE/Tests/CompileFail001/src/Generics.bf @@ -52,7 +52,7 @@ namespace IDETest void MethodB() { - function void() f = => MethodA; //FAIL Method 'IDETest.Generics.ClassA.MethodA(int a)' does not match function 'function void()' + function void() f = => MethodA; //FAIL Method 'void IDETest.Generics.ClassA.MethodA(int a)' does not match function 'function void()' } }