From f175398a706b8e198262f31c8c43a452c97aeb36 Mon Sep 17 00:00:00 2001 From: Simon Krajewski Date: Wed, 7 Feb 2024 16:43:26 +0100 Subject: [PATCH] remove awkwardness --- tests/unit/src/unit/issues/Issue11513.hx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/src/unit/issues/Issue11513.hx b/tests/unit/src/unit/issues/Issue11513.hx index c95cb85f471..0181b83162a 100644 --- a/tests/unit/src/unit/issues/Issue11513.hx +++ b/tests/unit/src/unit/issues/Issue11513.hx @@ -1,6 +1,5 @@ package unit.issues; -#if ((!java || jvm) && !cs) private enum abstract Message(Int) { final move_to:Message<{x:Int, y:Int}>; } @@ -24,14 +23,11 @@ private final listener2:Listener = { } } } -#end class Issue11513 extends Test { function test() { - #if ((!java || jvm) && !cs) listener.send(move_to, {x: 1, y: 2}); listener2.send(move_to, {x: 1, y: 2}); - #end noAssert(); } }