]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/range-arg-pattern.rs
Rollup merge of #107412 - tshepang:needless-check, r=wesleywiser
[rust.git] / tests / rustdoc / range-arg-pattern.rs
1 #![crate_name = "foo"]
2
3 // @has foo/fn.f.html
4 // @has - '//pre[@class="rust item-decl"]' 'pub fn f(_: u8)'
5 pub fn f(0u8..=255: u8) {}