Simon Krajewski 5 månader sedan
förälder
incheckning
1414cb3a54
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      tests/display/src/cases/Issue11211.hx

+ 3 - 1
tests/display/src/cases/Issue11211.hx

@@ -44,6 +44,8 @@ class Issue11211 extends DisplayTestCase {
 		eq("Int", type(pos(1)));
 		eq("Void", type(pos(2)));
 		eq("Bool", type(pos(3)));
+		var d = diagnostics();
+		trace(d);
 		arrayEq([
 			{
 				kind: DKCompilerError,
@@ -53,6 +55,6 @@ class Issue11211 extends DisplayTestCase {
 				relatedInformation: [],
 				args: "Variables of type Void are not allowed"
 			},
-		], diagnostics());
+		], d);
 	}
 }