It seems now that #6022 is fixed, imports in `import.hx` are always reported as unused: ```haxe class Main { public static function main() { "".replace("", ""); } } ``` `import.hx` ```haxe using StringTools; ``` 