Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
inference
/
dont-collect-stmts-from-parent-body.rs
blob: 635fe74b8679d31bc6c5f1040b35f1a02a531127 [
file
] [
log
] [
blame
] [
edit
]
// issue: rust-lang/rust#124022
struct
Type
<
T
>;
//~^ ERROR type parameter `T` is never used
fn
main
()
{
{
impl
<
T
>
Type
<
T
>
{
fn
new
()
->
Type
<
T
>
{
Type
//~^ ERROR type annotations needed
}
}
};
}