diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-05-09 23:56:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-09 23:56:14 +0200 |
| commit | e7b4023f3769fe67ed74f0a96a5383c9b8a76da8 (patch) | |
| tree | 4413e36cd37e5ed90b56f1aa515f4c7e034f290c | |
| parent | 903fc4bce365cdf391039338ac41b10cd09d5f17 (diff) | |
| parent | d0ba8fe33f0eb426d01447b5159ce7e78afe7a74 (diff) | |
| download | rust-e7b4023f3769fe67ed74f0a96a5383c9b8a76da8.tar.gz rust-e7b4023f3769fe67ed74f0a96a5383c9b8a76da8.zip | |
Rollup merge of #60648 - petrochenkov:shorten2, r=Dylan-DPC
Skip codegen for one UI test with long file path The path to this test is so long that object files produced by it hit some path length limit on Windows and linker cannot find them. The workaround here is to skip codegen and avoid producing object files, this test doesn't need them anyway.
| -rw-r--r-- | src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs b/src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs index 66290f2ff23..5a008ad26b4 100644 --- a/src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs +++ b/src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs @@ -3,8 +3,7 @@ // compile-flags:-Zborrowck=mir -Zverbose // compile-pass - -#![allow(warnings)] +// skip-codegen fn foo<'a, 'b>(x: &'a &'b u32) -> &'a u32 { &**x |
