summaryrefslogtreecommitdiff
path: root/test/manual/etags/rs-src/test.rs
blob: 081d0d7d4df4463409adcaead7926980d0207d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod test;

enum IpAddrKind {
    V4,
    V6,
}

fn test1() {
   println!("Testing");
}

fn main() {
   test::test1();
}