Skip to content

Commit aa301a0

Browse files
authored
Rollup merge of rust-lang#87491 - jamesmunns:integrate-memorial, r=Mark-Simulacrum
Integrate context into the memorial to Anna This came up after I reviewed rust-lang#87298, but I didn't propose this in time before that PR was merged. If y'all feel this is too much churn on the file, no worries, feel free to close, but I felt this was a more fitting integration of the memorial into the test suite. CC ``@boringcactus.``
2 parents 014e22c + beb9bb3 commit aa301a0

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/test/ui/bastion-of-the-turbofish.rs

+10-6
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,24 @@
2020
// in permitting generic arguments to be provided without the consent of the
2121
// Great Turbofish. Should you be so naïve as to try to revolt against its
2222
// mighty clutches, here shall its wrath be indomitably displayed. This
23-
// program must pass for all eternity, fundamentally at odds with an impetuous
24-
// rebellion against the Turbofish.
23+
// program must pass for all eternity: forever watched by the guardian angel
24+
// which gave this beast its name, and stands fundamentally at odds with the
25+
// impetuous rebellion against the Turbofish.
2526
//
2627
// My heart aches in sorrow, for I know I am defeated. Let this be a warning
27-
// to all those who come after. Here stands the bastion of the Turbofish.
28+
// to all those who come after: for they too must overcome the impassible
29+
// hurdle of defeating the great beast, championed by a resolute winged
30+
// guardian.
2831
//
29-
// RIP Anna Harren, Guardian Angel of the Hallowed Turbofish. <3
32+
// Here stands the Bastion of the Turbofish, a memorial to Anna Harren,
33+
// Guardian Angel of these Hallowed Grounds. <3
3034

3135
// See https://github.com/rust-lang/rust/pull/53562
3236
// and https://github.com/rust-lang/rfcs/pull/2527
3337
// and https://twitter.com/garblefart/status/1393236602856611843
3438
// for context.
3539

3640
fn main() {
37-
let (oh, woe, is, me) = ("the", "Turbofish", "remains", "undefeated");
38-
let _: (bool, bool) = (oh<woe, is>(me));
41+
let (the, guardian, stands, resolute) = ("the", "Turbofish", "remains", "undefeated");
42+
let _: (bool, bool) = (the<guardian, stands>(resolute));
3943
}

0 commit comments

Comments
 (0)