File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: ce750a7dbcd2dc68db6de89956b1de3ecf9f2d0a
4
+ refs/heads/snap-stage3: cce7327487e113d1d38c7771a187d3ad29dc0011
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -2414,7 +2414,7 @@ class parser {
2414
2414
token:: LBRACE {
2415
2415
let idents = self . parse_unspanned_seq (
2416
2416
token:: LBRACE , token:: RBRACE ,
2417
- seq_sep_trailing_disallowed ( token:: COMMA ) ,
2417
+ seq_sep_trailing_allowed ( token:: COMMA ) ,
2418
2418
{ |p| p. parse_path_list_ident ( ) } ) ;
2419
2419
let path = @{ span: mk_sp ( lo, self . span . hi ) ,
2420
2420
global: false , idents: path,
Original file line number Diff line number Diff line change
1
+ import foo:: bar:: { baz, quux, } ;
2
+
3
+ mod foo {
4
+ mod bar {
5
+ fn baz ( ) { }
6
+ fn quux ( ) { }
7
+ }
8
+ }
9
+
10
+ fn main ( ) { baz ( ) ; quux ( ) ; }
You can’t perform that action at this time.
0 commit comments