2021-08-25 14:30:09 +00:00
|
|
|
//@ compile-flags: -Z parse-only
|
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
struct S<
|
2024-07-10 21:49:50 +00:00
|
|
|
T: for<'a> ~const Tr<'a> + 'static + ~const std::ops::Add,
|
|
|
|
T: for<'a: 'b> ~const m::Trait<'a>,
|
2021-08-25 14:30:09 +00:00
|
|
|
>;
|