]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/assoc-item-cast.rs
Rollup merge of #103766 - lukas-code:error-in-core, r=Dylan-DPC
[rust.git] / src / test / rustdoc / assoc-item-cast.rs
1 #![crate_name = "foo"]
2
3 pub trait Expression {
4     type SqlType;
5 }
6
7 pub trait AsExpression<T> {
8     type Expression: Expression<SqlType = T>;
9     fn as_expression(self) -> Self::Expression;
10 }
11
12 // @has foo/type.AsExprOf.html
13 // @has - '//pre[@class="rust typedef"]' 'type AsExprOf<Item, Type> = <Item as AsExpression<Type>>::Expression;'
14 pub type AsExprOf<Item, Type> = <Item as AsExpression<Type>>::Expression;