Temporarily fix tests

cc #2655.
This commit is contained in:
topecongiro 2018-04-28 14:07:10 +09:00
parent e512c19ed5
commit 3432807ac2
4 changed files with 18 additions and 6 deletions

View File

@ -255,8 +255,12 @@ struct Foo {
struct Foo {
// trailing space ->
}
struct Foo { /* comment */ }
struct Foo( /* comment */ );
struct Foo {
// comment
}
struct Foo(
// comment
);
struct LongStruct {
a: A,

View File

@ -4,7 +4,9 @@
trait NameC {
// comment
}
struct FooC { /* comment */ }
struct FooC {
// comment
}
enum MooC {
// comment
}

View File

@ -228,8 +228,12 @@ struct Foo {
struct Foo {
// trailing space ->
}
struct Foo { /* comment */ }
struct Foo( /* comment */ );
struct Foo {
// comment
}
struct Foo(
// comment
);
struct LongStruct {
a: A,

View File

@ -136,7 +136,9 @@ union Foo {
union Foo {
// trailing space ->
}
union Foo { /* comment */ }
union Foo {
// comment
}
union LongUnion {
a: A,