Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-24389.rs
blob: 95bb2af9b25c5b94cf1c2416b647da0359ed6c06 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
struct
Foo
;
impl
Foo
{
fn
new
()
->
Self
{
Foo
}
fn
bar
()
{
Self
::
new
();
}
}
fn
main
()
{}