summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-js/generics-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-js/generics-trait.rs')
-rw-r--r--src/test/rustdoc-js/generics-trait.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/rustdoc-js/generics-trait.rs b/src/test/rustdoc-js/generics-trait.rs
deleted file mode 100644
index 20db117cc..000000000
--- a/src/test/rustdoc-js/generics-trait.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-pub trait SomeTrait {}
-pub trait OtherThingxxxxxxxx {}
-
-pub fn alef<T: OtherThingxxxxxxxx>() -> Result<T, ()> { loop {} }
-pub fn bet<T: SomeTrait>() -> Result<T, ()> { loop {} }
-
-pub fn alpha<T: OtherThingxxxxxxxx>(_param: Result<T, ()>) { loop {} }
-pub fn beta<T: SomeTrait>(_param: Result<T, ()>) { loop {} }