]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/impl-trait/bindings-opaque.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / impl-trait / bindings-opaque.stderr
index 6656968d79ae032aa94a1178b4eb2910be0fdd35..170bd4612349a0f2968f8177998c7308ec02fee5 100644 (file)
@@ -7,23 +7,23 @@ LL | #![feature(impl_trait_in_bindings)]
    = note: `#[warn(incomplete_features)]` on by default
    = note: see issue #63065 <https://github.com/rust-lang/rust/issues/63065> for more information
 
-error[E0599]: no method named `count_ones` found for opaque type `impl std::marker::Copy` in the current scope
+error[E0599]: no method named `count_ones` found for opaque type `impl Copy` in the current scope
   --> $DIR/bindings-opaque.rs:11:17
    |
 LL |     let _ = FOO.count_ones();
-   |                 ^^^^^^^^^^ method not found in `impl std::marker::Copy`
+   |                 ^^^^^^^^^^ method not found in `impl Copy`
 
-error[E0599]: no method named `count_ones` found for opaque type `impl std::marker::Copy` in the current scope
+error[E0599]: no method named `count_ones` found for opaque type `impl Copy` in the current scope
   --> $DIR/bindings-opaque.rs:13:17
    |
 LL |     let _ = BAR.count_ones();
-   |                 ^^^^^^^^^^ method not found in `impl std::marker::Copy`
+   |                 ^^^^^^^^^^ method not found in `impl Copy`
 
-error[E0599]: no method named `count_ones` found for opaque type `impl std::marker::Copy` in the current scope
+error[E0599]: no method named `count_ones` found for opaque type `impl Copy` in the current scope
   --> $DIR/bindings-opaque.rs:15:17
    |
 LL |     let _ = foo.count_ones();
-   |                 ^^^^^^^^^^ method not found in `impl std::marker::Copy`
+   |                 ^^^^^^^^^^ method not found in `impl Copy`
 
 error: aborting due to 3 previous errors; 1 warning emitted