summary refs log tree commit diff
path: root/tests/ui/suggestions/undeclared-module-alloc.rs
blob: e5f22369b941a60a176adbe7f09ca3aa075ca58c (plain)
1
2
3
4
5
//@ edition:2018

use alloc::rc::Rc; //~ ERROR failed to resolve: use of undeclared crate or module `alloc`

fn main() {}