blob: f712a2eedb7e9cdb095ad83c20fb752ee11ba689 [file] [log] [blame]
pub fn main() {
const z: &'static isize = {
static p: isize = 3;
&p //~ ERROR constants cannot refer to statics
};
}