Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add error description for E0174 #33920

Merged
merged 1 commit into from
Jun 6, 2016

Conversation

cristianoliveira
Copy link
Contributor

Reference for issue: #32777

r? @GuillaumeGomez

Hey Guillaume, sorry for taking too long to do it. I got some unexpected work during the week.

Waiting for your review :)

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @GuillaumeGomez (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@@ -1972,6 +1972,88 @@ To learn more about traits, take a look at the Book:
https://doc.rust-lang.org/book/traits.html
"##,

E0174: r##"
This error occurs because of unboxed closure explicitly methods calls is
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bit badly formulated.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm going change to the original short description error: "explicit use of unboxed closure methods are experimental"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bit more explicit isn't a problem. It's just badly formulated like I said.

@GuillaumeGomez
Copy link
Member

Hey Guillaume, sorry for taking too long to do it. I got some unexpected work during the week.

No problem! 😃

So there are some sentences that are badly formulated and a few nits. Nothing big. Thanks for your PR!

@cristianoliveira
Copy link
Contributor Author

Done. :)

Example of erroneous code:

```compile_fail
fn foo<F: Fn(&str)>(mut f: F) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just noticed: why this functions' lines have an extra blank space at the beggining?

Copy link
Contributor Author

@cristianoliveira cristianoliveira May 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ops... I didn't notice also

@GuillaumeGomez
Copy link
Member

Seems good for me but I'd prefer to have a second opinion on this. Thanks for your work! :)

cc @steveklabnik

PS: don't forget to squash your commits.

@cristianoliveira
Copy link
Contributor Author

For sure. Let's see what @steveklabnik says so I squash them.

@@ -1972,6 +1972,88 @@ To learn more about traits, take a look at the Book:
https://doc.rust-lang.org/book/traits.html
"##,

E0174: r##"
This error occurs because of the explicit use of unboxed closure methods
that is an experimental feature in current Rust version.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"that are an experimental feature in this version of Rust."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I got it!

@cristianoliveira cristianoliveira force-pushed the error-E0174-explanation branch 2 times, most recently from 9c2f10c to 15fdbf0 Compare May 31, 2016 13:16
@cristianoliveira
Copy link
Contributor Author

Done.

}
```

Rust’s implementation of closures is a bit different than other languages.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems weird for me. ' wouldn't be better in here? cc @steveklabnik

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It comes from the documentation take a look:
https://doc.rust-lang.org/book/closures.html#closure-implementation

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure it applies here.

Copy link
Contributor Author

@cristianoliveira cristianoliveira Jun 4, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see... There is another case and they have used (').
https://github.com/rust-lang/rust/blob/master/src/librustc_typeck/diagnostics.rs#L1548

Let me change it.

@GuillaumeGomez
Copy link
Member

Just a few more nits and it'll be good to go!

@cristianoliveira cristianoliveira force-pushed the error-E0174-explanation branch 2 times, most recently from 38dff9c to 4c3d653 Compare June 4, 2016 17:39
@GuillaumeGomez
Copy link
Member

All good, thanks!

@bors: r+ rollup

@bors
Copy link
Collaborator

bors commented Jun 4, 2016

📌 Commit 4c3d653 has been approved by GuillaumeGomez

Example of an implicit call:

```
fn foo<F: Fn()>(f: F) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing argument type to Fn.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me fix it.

@eddyb
Copy link
Member

eddyb commented Jun 6, 2016

@bors r-

@cristianoliveira cristianoliveira force-pushed the error-E0174-explanation branch from 4c3d653 to 45e647d Compare June 6, 2016 04:02
@cristianoliveira
Copy link
Contributor Author

Fixed

@eddyb
Copy link
Member

eddyb commented Jun 6, 2016

@bors r=GuillaumeGomez

@bors
Copy link
Collaborator

bors commented Jun 6, 2016

📌 Commit 45e647d has been approved by GuillaumeGomez

@bors
Copy link
Collaborator

bors commented Jun 6, 2016

⌛ Testing commit 45e647d with merge 4a4a13a...

bors added a commit that referenced this pull request Jun 6, 2016
…illaumeGomez

Add error description for E0174

Reference for issue: #32777

r? @GuillaumeGomez

Hey Guillaume, sorry for taking too long to do it. I got some unexpected work during the week.

Waiting for your review :)
@bors bors merged commit 45e647d into rust-lang:master Jun 6, 2016
@cristianoliveira cristianoliveira deleted the error-E0174-explanation branch June 6, 2016 12:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants