]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/assoc-item-cast.rs
Rollup merge of #105459 - jyn514:proc-macro-default, r=Mark-Simulacrum
[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;