]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs-enums/newtype-struct-xc.rs
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[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 }