1
Fork 0

Fix new 'unnecessary trailing semicolon' warnings

This commit is contained in:
Aaron Hill 2020-11-25 17:00:28 -05:00
parent db0d0e8c43
commit 6f91c32da6
No known key found for this signature in database
GPG key ID: B4087E510E98B164
28 changed files with 39 additions and 39 deletions

View file

@ -17,10 +17,10 @@ as it does not include the method name in the symbol name.
pub struct Foo;
impl Foo {
pub fn foo() {
enum Panic { Common };
enum Panic { Common }
}
pub fn bar() {
enum Panic { Common };
enum Panic { Common }
}
}