Issue #13350 Report tidy error for space after (

This commit is contained in:
Hugo Thiessard 2016-09-21 23:50:18 +02:00
parent 7b98c8a788
commit 0ac212afb1
4 changed files with 13 additions and 1 deletions

View file

@ -49,4 +49,12 @@ impl test {
}
}
type Text_Fun3 = fn( i32) -> i32;
fn test_fun3<Text_Fun3>( y: Text_Fun3) {
test_fun( 1);
}
// Should not be triggered
macro_rules! test_macro ( ( $( $fun:ident = $flag:ident ; )* ) => ());
}