]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs-enums/tag-in-block.rs
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / structs-enums / tag-in-block.rs
1 // run-pass
2 #![allow(dead_code)]
3 #![allow(non_camel_case_types)]
4
5
6
7 // pretty-expanded FIXME #23616
8
9 fn foo() {
10     fn zed(_z: bar) { }
11     enum bar { nil, }
12     fn baz() { zed(bar::nil); }
13 }
14
15 pub fn main() { }