1 // This module is not imported in the cfg_if macro in lib.rs so it is ignored 2 // while the foo and bar mods are formatted. 3 // Check the corresponding file in tests/source/issue-3253/paths/excluded.rs 4 5 6 7 Foo<T>() where T: Bar8 fn Foo<T>() where T: Bar { 9 } 10 11 12 dummy(&self)13trait CoolerTypes { fn dummy(&self) { 14 } 15 } 16 17 18