add: optional-fn-return-type#406
Open
xonx4l wants to merge 1 commit into
Open
Conversation
Collaborator
|
Thanks for contributing to formality! :) |
xonx4l
force-pushed
the
optional-fn-return-type
branch
from
June 25, 2026 11:54
c3ce639 to
84015de
Compare
nikomatsakis
requested changes
Jun 26, 2026
Comment on lines
+517
to
+519
| let rest: Vec<TokenStream> = | ||
| chars.map(|c| quote!(__p.expect_char(#c)?;)).collect(); | ||
| (quote!(__p.expect_char(#first).is_ok()), quote!(#(#rest)*)) |
Contributor
There was a problem hiding this comment.
Suggested change
| let rest: Vec<TokenStream> = | |
| chars.map(|c| quote!(__p.expect_char(#c)?;)).collect(); | |
| (quote!(__p.expect_char(#first).is_ok()), quote!(#(#rest)*)) | |
| ( | |
| quote!(__p.expect_char(#first).is_ok()), | |
| quote!(#(__p.expect_char(#chars)?;)*) | |
| ) |
I think maybe maybe you can just do this?
| } | ||
| } | ||
|
|
||
| /// The default type is the unit type `()`. |
Contributor
There was a problem hiding this comment.
Hmm, I am not sure if we want a default for Ty that is always unit. It's convenient here but it might not be correct elsewhere. Let's have a new type like
struct OutputTy { ty: Ty }
impl Upcast<Ty> for OutputTy { }
impl Default for OutputTy { }and then change output_ty: OutputTy
Contributor
Author
There was a problem hiding this comment.
Ok , will do . Thanks!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This PR implements optional function return type as discussed in #393
e.g., closes #393
How does it work, what questions do you have?
Functions can now be written
fn foo() { }instead of requiringfn foo() -> () { }. When the return type is omitted, it defaults to the unit type().Added tests demonstrating that
fn run() {trusted}parses identically tofn run() -> () {trusted}.AI disclosure