blob: 886cfb0005f23648d53815fbb709ac4e64b9db68 [file] [log] [blame]
#![feature(const_trait_impl)]
#![allow(bare_trait_objects)]
//@ check-pass
struct S;
trait T {}
impl const S {}
impl const dyn T {}
fn main() {}