about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/impl-trait/where-allowed.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/compile-fail/impl-trait/where-allowed.rs b/src/test/compile-fail/impl-trait/where-allowed.rs
index be990b0e15d..a4361446020 100644
--- a/src/test/compile-fail/impl-trait/where-allowed.rs
+++ b/src/test/compile-fail/impl-trait/where-allowed.rs
@@ -144,11 +144,9 @@ impl DummyType {
 extern "C" {
     fn in_foreign_parameters(_: impl Debug);
     //~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
-    // FIXME currently allowed
 
     fn in_foreign_return() -> impl Debug;
     //~^ ERROR `impl Trait` not allowed outside of function and inherent method return types
-    // FIXME currently allowed
 }
 
 // Allowed