Exact type to string conversion.

This commit is contained in:
Juraj Kirchheim
2021-03-14 12:58:10 +01:00
parent a383f7692b
commit 99a1fc3fa6
6 changed files with 106 additions and 2 deletions

8
tests/Dummy.hx Normal file
View File

@@ -0,0 +1,8 @@
class Dummy {
public function new() {}
static public var p(default, never) = new Private();
}
private class Private {
public function new() {}
}