mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 04:14:28 +00:00
parent
e512c19ed5
commit
3432807ac2
@ -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,
|
||||
|
@ -4,7 +4,9 @@
|
||||
trait NameC {
|
||||
// comment
|
||||
}
|
||||
struct FooC { /* comment */ }
|
||||
struct FooC {
|
||||
// comment
|
||||
}
|
||||
enum MooC {
|
||||
// comment
|
||||
}
|
||||
|
@ -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,
|
||||
|
@ -136,7 +136,9 @@ union Foo {
|
||||
union Foo {
|
||||
// trailing space ->
|
||||
}
|
||||
union Foo { /* comment */ }
|
||||
union Foo {
|
||||
// comment
|
||||
}
|
||||
|
||||
union LongUnion {
|
||||
a: A,
|
||||
|
Loading…
Reference in New Issue
Block a user