diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2019-02-16 14:02:15 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2019-02-16 14:02:15 +0100 |
| commit | 5721542164389b66830c2497a582c1589abf70dd (patch) | |
| tree | 3866cdbe05bb00bf3ea34e9688a6ac3fe45cb2ae /example/std_example.rs | |
| parent | 4c94251f95206e0361a829fb424a5d9d8c724e11 (diff) | |
| download | rust-5721542164389b66830c2497a582c1589abf70dd.tar.gz rust-5721542164389b66830c2497a582c1589abf70dd.zip | |
Fix BinOp::Offset
fixes #341
Diffstat (limited to 'example/std_example.rs')
| -rw-r--r-- | example/std_example.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/std_example.rs b/example/std_example.rs index dceb68bcdf4..2f1fba590fd 100644 --- a/example/std_example.rs +++ b/example/std_example.rs @@ -6,4 +6,6 @@ fn main() { let mut stderr = stderr.lock(); writeln!(stderr, "some {} text", "<unknown>").unwrap(); + + std::process::Command::new("true").env("c", "d").spawn(); } |
