2024-11-29 06:05:56 +11:00
|
|
|
//@ compile-flags: -Z parse-crate-root-only
|
2021-08-25 14:30:09 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
|
|
struct S<
|
2025-03-11 12:08:45 +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
|
|
|
>;
|