Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
static
/
issue-18118-2.rs
blob: f712a2eedb7e9cdb095ad83c20fb752ee11ba689 [
file
] [
log
] [
blame
]
pub
fn
main
()
{
const
z
:
&
'
static
isize
=
{
static
p
:
isize
=
3
;
&
p
//~ ERROR constants cannot refer to statics
};
}