2018-02-07 19:35:35 -08:00
|
|
|
//@ compile-flags: -Z teach
|
|
|
|
|
|
2017-07-26 21:51:09 -07:00
|
|
|
#![allow(warnings)]
|
2016-05-12 15:17:02 +02:00
|
|
|
|
2023-02-27 13:07:44 +00:00
|
|
|
const CON: Vec<i32> = vec![1, 2, 3]; //~ ERROR E0010
|
2024-12-23 21:49:48 +00:00
|
|
|
//~| ERROR cannot call non-const method
|
2016-05-12 15:17:02 +02:00
|
|
|
fn main() {}
|