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() {}