Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
issues
/
issue-7268.rs
blob: 69901e97894c8146392fc5919e2e78960a3f7757 [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be check-pass?)
#![
allow
(
dead_code
)]
// pretty-expanded FIXME #23616
fn
foo
<
T
:
'
static
>(
_
:
T
)
{}
fn
bar
<
T
>(
x
:
&
'
static
T
)
{
foo
(
x
);
}
fn
main
()
{}