]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs-enums/newtype-struct-xc.rs
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / structs-enums / newtype-struct-xc.rs
1 // run-pass
2 // aux-build:newtype_struct_xc.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate newtype_struct_xc;
7
8 pub fn main() {
9     let _ = newtype_struct_xc::Au(2);
10 }