Hi! Is there a compiler flag to hide warnings for...
# k2-adopters
o
Hi! Is there a compiler flag to hide warnings for non-exportable parameter? We’re drowning in them atm.
k
@Sasha can you help?
s
You may suppress the all warnings on file:
@file:Suppress("NON_EXPORTABLE_TYPE")
However, if it works ok with K1, it is probably a bug in K2 frontend check.
o
That might work. However, then I need to change in many files 🙂