Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
private_unused.rs
blob: fa0926ee8bff8bbd974306fba3f684a9a25e727a [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
#[
deny
(
warnings
)]
enum
Empty
{
}
trait
Bar
<
T
>
{}
impl
Bar
<
Empty
>
for
()
{}
fn
boo
()
->
impl
Bar
<
Empty
>
{}
fn
main
()
{
boo
();
}