diff options
Diffstat (limited to 'test/lsp/rust/src/main.rs')
-rw-r--r-- | test/lsp/rust/src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lsp/rust/src/main.rs b/test/lsp/rust/src/main.rs index e7a11a9..e71b6f7 100644 --- a/test/lsp/rust/src/main.rs +++ b/test/lsp/rust/src/main.rs @@ -1,3 +1,5 @@ +mod foo; + fn main() { - println!("Hello, world!"); + println!("Hello, world! {}", foo::a()); } |