]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-37788.rs
Add 'src/tools/miri/' from commit '75dd959a3a40eb5b4574f8d2e23aa6efbeb33573'
[rust.git] / src / test / ui / proc-macro / issue-37788.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use]
4 extern crate test_macros;
5
6 fn main() {
7     // Test that constructing the `visible_parent_map` (in `cstore_impl.rs`) does not ICE.
8     std::cell::Cell::new(0) //~ ERROR mismatched types
9 }