We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
transparent inline def foo[T]: Int = 10 def bar[T]: Int = 10 def test = foo[List] bar[List]
7 | bar[List] | ^^^^ | Missing type parameter for List
The error should also be emitted for foo[List]
foo[List]