about summary refs log tree commit diff
path: root/src/test/ui/suggestions/constrain-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/constrain-trait.rs')
-rw-r--r--src/test/ui/suggestions/constrain-trait.rs47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/test/ui/suggestions/constrain-trait.rs b/src/test/ui/suggestions/constrain-trait.rs
deleted file mode 100644
index 99ccf7a7f3b..00000000000
--- a/src/test/ui/suggestions/constrain-trait.rs
+++ /dev/null
@@ -1,47 +0,0 @@
-// run-rustfix
-// check-only
-
-#[derive(Debug)]
-struct Demo {
-    a: String
-}
-
-trait GetString {
-    fn get_a(&self) -> &String;
-}
-
-trait UseString: std::fmt::Debug {
-    fn use_string(&self) {
-        println!("{:?}", self.get_a()); //~ ERROR no method named `get_a` found
-    }
-}
-
-trait UseString2 {
-    fn use_string(&self) {
-        println!("{:?}", self.get_a()); //~ ERROR no method named `get_a` found
-    }
-}
-
-impl GetString for Demo {
-    fn get_a(&self) -> &String {
-        &self.a
-    }
-}
-
-impl UseString for Demo {}
-impl UseString2 for Demo {}
-
-
-#[cfg(test)]
-mod tests {
-    use crate::{Demo, UseString};
-
-    #[test]
-    fn it_works() {
-        let d = Demo { a: "test".to_string() };
-        d.use_string();
-    }
-}
-
-
-fn main() {}