-
Notifications
You must be signed in to change notification settings - Fork 901
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
change default edition to 2018 #3942
Merged
topecongiro
merged 1 commit into
rust-lang:master
from
calebcartwright:edition-2018-default
Nov 27, 2019
+680
−28
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// rustfmt-use_try_shorthand: true | ||
// rustfmt-edition: 2015 | ||
// Use try! shorthand | ||
|
||
fn main() { | ||
let lorem = try!(ipsum.map(|dolor| dolor.sit())); | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// rustfmt-normalize_comments: true | ||
// rustfmt-edition: 2015 | ||
|
||
// Imports. | ||
|
||
// Long import. | ||
use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl}; | ||
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA, ItemB}; | ||
use exceedingly::loooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA, ItemB}; | ||
|
||
use list::{ | ||
// Some item | ||
SomeItem /* Comment */, /* Another item */ AnotherItem /* Another Comment */, // Last Item | ||
LastItem | ||
}; | ||
|
||
use test::{ Other /* C */ , /* A */ self /* B */ }; | ||
|
||
use syntax::{self}; | ||
use {/* Pre-comment! */ | ||
Foo, Bar /* comment */}; | ||
use Foo::{Bar, Baz}; | ||
pub use syntax::ast::{Expr_, Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath}; | ||
|
||
use syntax::some::{}; | ||
|
||
use self; | ||
use std::io::{self}; | ||
use std::io::self; | ||
|
||
mod Foo { | ||
pub use syntax::ast::{ | ||
ItemForeignMod, | ||
ItemImpl, | ||
ItemMac, | ||
ItemMod, | ||
ItemStatic, | ||
ItemDefaultImpl | ||
}; | ||
|
||
mod Foo2 { | ||
pub use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, self, ItemDefaultImpl}; | ||
} | ||
} | ||
|
||
fn test() { | ||
use Baz::*; | ||
use Qux; | ||
} | ||
|
||
// Simple imports | ||
use foo::bar::baz as baz ; | ||
use bar::quux as kaas; | ||
use foo; | ||
|
||
// With aliases. | ||
use foo::{self as bar, baz}; | ||
use foo::{self as bar}; | ||
use foo::{qux as bar}; | ||
use foo::{baz, qux as bar}; | ||
|
||
// With absolute paths | ||
use ::foo; | ||
use ::foo::{Bar}; | ||
use ::foo::{Bar, Baz}; | ||
use ::{Foo}; | ||
use ::{Bar, Baz}; | ||
|
||
// Root globs | ||
use *; | ||
use ::*; | ||
|
||
// spaces used to cause glob imports to disappear (#1356) | ||
use super:: * ; | ||
use foo::issue_1356:: * ; | ||
|
||
// We shouldn't remove imports which have attributes attached (#1858) | ||
#[cfg(unix)] | ||
use self::unix::{}; | ||
|
||
// nested imports | ||
use foo::{a, bar::{baz, qux, xxxxxxxxxxx, yyyyyyyyyyyyy, zzzzzzzzzzzzzzzz, foo::{a, b, cxxxxxxxxxxxxx, yyyyyyyyyyyyyy, zzzzzzzzzzzzzzzz}}, b, boo, c,}; | ||
|
||
use fooo::{baar::{foobar::{xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy, zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz}}, z, bar, bar::*, x, y}; | ||
|
||
use exonum::{api::{Api, ApiError}, blockchain::{self, BlockProof, Blockchain, Transaction, TransactionSet}, crypto::{Hash, PublicKey}, helpers::Height, node::TransactionSend, storage::{ListProof, MapProof}}; | ||
|
||
// nested imports with a single sub-tree. | ||
use a::{b::{c::*}}; | ||
use a::{b::{c::{}}}; | ||
use a::{b::{c::d}}; | ||
use a::{b::{c::{xxx, yyy, zzz}}}; | ||
|
||
// #2645 | ||
/// This line is not affected. | ||
// This line is deleted. | ||
use c; | ||
|
||
// #2670 | ||
#[macro_use] | ||
use imports_with_attr; | ||
|
||
// #2888 | ||
use std::f64::consts::{SQRT_2, E, PI}; | ||
|
||
// #3273 | ||
#[rustfmt::skip] | ||
use std::fmt::{self, {Display, Formatter}}; |
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was changed due to an existing bug I discovered during this process that only surfaces when using the 2018 edition (we didn't see it before because the default edition was 2015).
I've opened #3943 to track that separate issue