Skip to content

Commit

Permalink
Add a test
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed Nov 23, 2016
1 parent 3295afa commit 9ea1544
Show file tree
Hide file tree
Showing 6 changed files with 541 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/run-make/save-analysis-fail/Makefile
@@ -0,0 +1,8 @@
-include ../tools.mk
all: code
krate2: krate2.rs
$(RUSTC) $<
code: foo.rs krate2
$(RUSTC) foo.rs -Zsave-analysis-csv
$(RUSTC) foo.rs -Zsave-analysis
$(RUSTC) foo.rs -Zsave-analysis-api
15 changes: 15 additions & 0 deletions src/test/run-make/save-analysis-fail/SameDir.rs
@@ -0,0 +1,15 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// sub-module in the same directory as the main crate file

pub struct SameStruct {
pub name: String
}
13 changes: 13 additions & 0 deletions src/test/run-make/save-analysis-fail/SameDir3.rs
@@ -0,0 +1,13 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

pub fn hello(x: isize) {
println!("macro {} :-(", x);
}
37 changes: 37 additions & 0 deletions src/test/run-make/save-analysis-fail/SubDir/mod.rs
@@ -0,0 +1,37 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// sub-module in a sub-directory

use sub::sub2 as msalias;
use sub::sub2;

static yy: usize = 25;

mod sub {
pub mod sub2 {
pub mod sub3 {
pub fn hello() {
println!("hello from module 3");
}
}
pub fn hello() {
println!("hello from a module");
}

pub struct nested_struct {
pub field2: u32,
}
}
}

pub struct SubStruct {
pub name: String
}

0 comments on commit 9ea1544

Please sign in to comment.