nushell-plugins/nushell/tests/fixtures/lsp/goto/match.nu
2025-06-27 02:33:44 +01:00

5 lines
58 B
Text

let foo = 1
match $foo {
_ if $foo == 1 => 1
_ => 2
}