Skip to content

Commit 6f4711f

Browse files
committed
Add simple test for incremental compilation of delegations
1 parent 98594f4 commit 6f4711f

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//@ revisions: bpass
2+
3+
#![feature(fn_delegation)]
4+
5+
pub mod to_reuse {
6+
pub fn bar() {}
7+
}
8+
9+
mod a {
10+
use to_reuse;
11+
reuse to_reuse::bar;
12+
}
13+
14+
fn main() {}

0 commit comments

Comments
 (0)