Skip to content

Commit c5db3e9

Browse files
committed
---
yaml --- r: 102653 b: refs/heads/auto c: 03c28b4 h: refs/heads/master i: 102651: fe7e37e v: v3
1 parent 42111bf commit c5db3e9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: 8a1dda92ba348c93540fbe06f1a9f17111d1a8f3
16+
refs/heads/auto: 03c28b4ac56dd3688a8d324bb2e7683a351e656b
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/src/test/compile-fail/struct-no-fields-2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: Unit-like struct construction is written with no trailing `{ }`
1211
struct Foo;
1312

1413
fn f2() {
1514
let _end_stmt = Foo { };
15+
//~^ ERROR: Unit-like struct construction is written with no trailing `{ }`
1616
}
1717

1818
fn main() {}

branches/auto/src/test/compile-fail/struct-no-fields-3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: Unit-like struct construction is written with no trailing `{ }`
1211
struct Foo;
1312

1413
fn g3() {
1514
let _mid_tuple = (Foo { }, 2);
15+
//~^ ERROR: Unit-like struct construction is written with no trailing `{ }`
1616
}
1717

1818
fn main() {}

branches/auto/src/test/compile-fail/struct-no-fields-4.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: Unit-like struct construction is written with no trailing `{ }`
1211
struct Foo;
1312

1413
fn h4() {
1514
let _end_of_tuple = (3, Foo { });
15+
//~^ ERROR: Unit-like struct construction is written with no trailing `{ }`
1616
}
1717

1818
fn main() {}

branches/auto/src/test/compile-fail/struct-no-fields-5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: Unit-like struct construction is written with no trailing `{ }`
1211
struct Foo;
1312

1413
fn i5() {
1514
let _end_of_block = { Foo { } };
15+
//~^ ERROR: Unit-like struct construction is written with no trailing `{ }`
1616
}
1717

1818
fn main() {}

branches/auto/src/test/compile-fail/struct-no-fields.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern: Unit-like struct definition should be written as `struct Foo;`
1211
struct Foo {}
12+
//~^ ERROR: Unit-like struct definition should be written as `struct Foo;`
1313

1414
fn main() {}

0 commit comments

Comments
 (0)