Are there documented limits about what the compile...
# compiler
m
Are there documented limits about what the compiler can accept? I have a 357k lines file containing a class with a ton of nested classes and any code referencing it fails to compile with
Unresolved Reference
. I'm not really expecting this use case to work but curious when to giveup and throw a better error message than
Unresolved Reference
h
Which target? AFAIK jvm class can hold up to 65k members.
m
Yea I've seen that error before but I don't think this is what's happening there.
IDEA also seems completely lost so I was thinking maybe there are limitations in the frontend or so, not sure
e
There’s no hard limit, but the longer it goes the slower it gets. However, it should not crash this way. It would be great if you can provide a reproducer and file a bug to http://kotl.in/issue
👀 2