File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 4ccdece184fbc0718efb15d411968b7688d53eb6
2
+ refs/heads/master: 3722326cd7dddf367edee4adf44fc3da89955428
Original file line number Diff line number Diff line change @@ -445,6 +445,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
445
445
import2.rs \
446
446
import3.rs \
447
447
import4.rs \
448
+ import5.rs \
448
449
item-name-overload.rs \
449
450
large-records.rs \
450
451
lazy-init.rs \
@@ -483,6 +484,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
483
484
arg-type-mismatch.rs \
484
485
import.rs \
485
486
import2.rs \
487
+ import3.rs \
486
488
while-type-error.rs \
487
489
) , \
488
490
$(wildcard test/* /* .rs test/* /* .rc) )
Original file line number Diff line number Diff line change
1
+ import foo. bar ;
2
+ mod foo {
3
+ import zed. bar;
4
+ mod zed {
5
+ fn bar ( ) {
6
+ log "foo" ;
7
+ }
8
+ }
9
+ }
10
+
11
+ fn main ( vec[ str] args ) {
12
+ bar ( ) ;
13
+ }
You can’t perform that action at this time.
0 commit comments