summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/where-sized.rs
blob: c1ac834b2fcb8544001591942218d8aaeb6c33b9 (plain)
1
2
3
4
5
6
#![crate_name = "foo"]

// @has foo/fn.foo.html
// @has - '//pre[@class="rust item-decl"]' 'pub fn foo<X, Y: ?Sized>(_: &X)'
// @has - '//pre[@class="rust item-decl"]' 'where X: ?Sized,'
pub fn foo<X, Y: ?Sized>(_: &X) where X: ?Sized {}