2019-05-21 17:09:58 -05:00
|
|
|
// aux-build:test-macros.rs
|
2016-11-16 01:30:35 -06:00
|
|
|
|
|
|
|
#[macro_use]
|
2019-05-21 17:09:58 -05:00
|
|
|
extern crate test_macros;
|
2016-11-16 01:30:35 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Test that constructing the `visible_parent_map` (in `cstore_impl.rs`) does not ICE.
|
|
|
|
std::cell::Cell::new(0) //~ ERROR mismatched types
|
|
|
|
}
|