move dummy test module to auxiliary directory

This commit is contained in:
Ibraheem Ahmed 2022-06-04 16:12:45 -04:00
parent c08f460beb
commit f479289e78
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1,2 @@
#[allow(dead_code)]
pub struct Dummy;

View File

@ -1 +0,0 @@
pub struct Dummy;

View File

@ -1,9 +1,9 @@
// run-pass
#[path = "dummy.rs"]
#[path = "auxiliary/dummy_lib.rs"]
mod lib;
#[path = "dummy.rs"]
#[path = "auxiliary/dummy_lib.rs"]
mod main;
fn main() {}