From b8d9b89ef4f4ad0dbb680ef0b4b0a74e67d72c2e Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Thu, 17 Oct 2019 12:54:05 -0400 Subject: [PATCH] ecstatic-morse for compiler contributors --- ...cstatic-morse-for-compiler-contributors.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md diff --git a/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md b/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md new file mode 100644 index 000000000..fa2605a8e --- /dev/null +++ b/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md @@ -0,0 +1,20 @@ +--- +layout: post +title: "Please welcome ecstatic-morse to compiler-contributors" +author: Niko Matsakis +description: "Please welcome ecstatic-morse to compiler-contributors" +team: the compiler team +--- + +Please welcome [@ecstatic-morse] to the [compiler contributors] group! +They're working to make compile-time evaluation more expressive by +enabling `if`, `match` and other control flow in constants. As one of +their first major contributions, they implemented a dataflow analysis +to validate the bodies of `const`s and `const fn`s +([rust-lang/rust#64470]). + +Congratulations [@ecstatic-morse], and thanks! + +[@ecstatic-morse]: https://github.com/ecstatic-morse +[compiler-contributors]: https://rust-lang.github.io/rfcs/2689-compiler-team-contributors.html +[rust-lang/rust#64470]: https://github.com/rust-lang/rust/pull/64470