Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
next-solver
/
destruct.rs
blob: f595cb30db846f1cad00a3a79d2dbc39b013997c [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Znext-solver
//@ check-pass
#![
feature
(
const_trait_impl
)]
fn
foo
(
_
:
impl
std
::
marker
::
Destruct
)
{}
struct
MyAdt
;
fn
main
()
{
foo
(
1
);
foo
(
MyAdt
);
}