aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/rust/array.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/rust/array.rs')
-rw-r--r--lua/tests/indent/rust/array.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/tests/indent/rust/array.rs b/lua/tests/indent/rust/array.rs
deleted file mode 100644
index 68344e0ee..000000000
--- a/lua/tests/indent/rust/array.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-const X: [i32; 2] = [
- 1,
- 2,
-];
-
-fn foo() {
- let _x = [
- 1,
- 2,
- ];
-}