summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/translation/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/translation/test.rs')
-rw-r--r--src/test/run-make/translation/test.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/run-make/translation/test.rs b/src/test/run-make/translation/test.rs
deleted file mode 100644
index b8f5bff31..000000000
--- a/src/test/run-make/translation/test.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Exact error being tested isn't relevant, it just needs to be known that it uses Fluent-backed
-// diagnostics.
-
-struct Foo {
- val: (),
-}
-
-fn foo() -> Foo {
- val: (),
-}
-
-fn main() {
- let x = foo();
- x.val == 42;
- let x = {
- val: (),
- };
-}