Sign in
◑
Theme
rust
/
rust
/
c1f7fa1a48a060b980cb45ffde00a9b0cddac7c1
/
.
/
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
()
{}