Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
doc-comment-in-generic-tuple-type.rs
blob: 929777db6e4c0f44c274b919da6027734363dd4f [
file
]
// Regression test for https://github.com/rust-lang/rust/issues/122463
struct
Foo
{
a
:
Vec
<(
/// Docstring
//~^ ERROR expected type, found doc comment
f32
,
f32
,
)>,
}
fn
main
()
{}