blob: fd14132124c4bd1fcf6bf3178746d15c815b157c [file] [log] [blame]
//@ compile-flags: -Znext-solver
//@ check-pass
#![feature(const_trait_impl, const_destruct)]
fn foo(_: impl std::marker::Destruct) {}
struct MyAdt;
fn main() {
foo(1);
foo(MyAdt);
}