summary refs log tree commit diff
path: root/src/test/run-pass/import-trailing-comma.rs
blob: a6a56e9009dc610916d646fc41ac6ec7ae05d204 (plain)
1
2
3
4
5
6
7
8
9
10
import foo::bar::{baz, quux,};

mod foo {
    mod bar {
        fn baz() { }
        fn quux() { }
    }
}

fn main() { baz(); quux(); }