]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/error-should-say-copy-not-pod.stderr
Remove licenses
[rust.git] / src / test / ui / error-should-say-copy-not-pod.stderr
index 704cd4f4838f2d836972eaa8b1782613c27d6f00..d42fea70812800b1de2f1e5aee37652e43e91b44 100644 (file)
@@ -1,11 +1,11 @@
 error[E0277]: the trait bound `std::string::String: std::marker::Copy` is not satisfied
-  --> $DIR/error-should-say-copy-not-pod.rs:16:5
+  --> $DIR/error-should-say-copy-not-pod.rs:6:5
    |
 LL |     check_bound("nocopy".to_string()); //~ ERROR : std::marker::Copy` is not satisfied
    |     ^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `std::string::String`
    |
 note: required by `check_bound`
-  --> $DIR/error-should-say-copy-not-pod.rs:13:1
+  --> $DIR/error-should-say-copy-not-pod.rs:3:1
    |
 LL | fn check_bound<T:Copy>(_: T) {}
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^