1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use super :: *; mod mod1 { #[ derive( Debug, PartialEq, Eq ) ] pub struct Struct1( pub i32, pub bool ); impl Struct1 { #[ inline( always ) ] pub fn new( src1: i32, src2: bool ) -> Self { Self( src1, src2 ) } } } // include!( "./only_test/multiple_unnamed.rs" );