]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/assoc-item-cast.rs
Update unsuspicious file list
[rustc.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;