summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0010-teach.rs
blob: da51035ab555062b2e03c26a658f14690a0d301c (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: -Z teach

#![feature(box_syntax)]
#![allow(warnings)]

const CON : Box<i32> = box 0; //~ ERROR E0010
//~^ ERROR constant contains unimplemented expression type

fn main() {}