aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/type-in-nested-module.rs
blob: 6eaff11e5703a44e085ebead1f85feb51523618a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
mod a {
  mod b {
  type t = int;
  fn foo() {
    let t x = 10;
  }
  }
}

fn main() {
}