]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/auxiliary/legacy_interaction.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / hygiene / auxiliary / legacy_interaction.rs
1 // ignore-pretty pretty-printing is unhygienic
2
3 #[macro_export]
4 macro_rules! m {
5     () => {
6         fn f() {} // (2)
7         g(); // (1)
8     }
9 }