aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0151_trait_alias.rs
blob: 4bd428ee46985f1ce4791d79b7925c49b684c4c9 (plain)
1
2
3
trait Z<U> = T<U>;
trait Z<U> = T<U> where U: Copy;
trait Z<U> = where Self: T<U>;