Closed
Description
Describe the bug
Inlining newValue
in the following code:
def foo =
val newValue =
val x = true
x
val xx = newValue // inline this value
Results in:
def foo =
val xx = val x = true
x
Expected behavior
def foo =
val xx =
val x = true
x
Operating system
macOS
Editor/Extension
VS Code
Version of Metals
v1.4.2
Extra context or search terms
inline value