about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/tilde-const-syntax.rs
blob: d65ecae3d067cf77c4c5927321be7c8089e04095 (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: -Z parse-only
//@ check-pass

#![feature(const_trait_impl)]

struct S<
    T: for<'a> ~const Tr<'a> + 'static + ~const std::ops::Add,
    T: for<'a: 'b> ~const m::Trait<'a>,
>;