Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
coherence
/
issue-85026.rs
blob: 8b116545aa696e27dd35275c11148d27214d85e2 [
file
]
#![
feature
(
auto_traits
)]
auto
trait
AutoTrait
{}
// You cannot impl your own `dyn AutoTrait`.
impl
dyn
AutoTrait
{}
//~ERROR E0785
// You cannot impl someone else's `dyn AutoTrait`
impl
dyn
Unpin
{}
//~ERROR E0785
fn
main
()
{}