Skip to content

Commit

Permalink
23189
Browse files Browse the repository at this point in the history
  • Loading branch information
wheals committed Oct 26, 2015
1 parent d9f2f2c commit 9934dda
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/23189.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mod _23189;

fn main() {
let _ = _23189 { x: 0 };
}
3 changes: 3 additions & 0 deletions src/_23189/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
struct _23189 {
x: i32,
}
1 change: 1 addition & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ fi

for f in src/*
do
[[ -f $f ]] || continue;
echo "Testing $f:"
# Compile the code, and if it passes exit with error code
if rustc "$f" > /dev/null 2>&1; then
Expand Down

0 comments on commit 9934dda

Please sign in to comment.