blob: 6d52156b3d2de2e9dac6e54df40cb14de7aef8d3 [file] [log] [blame]
pub fn main() {
const z: &'static isize = {
static p: isize = 3;
&p
//~^ ERROR constants cannot refer to statics, use a constant instead
};
}