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

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