Skip to content

Commit e7b4023

Browse files
authored
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.
2 parents 903fc4b + d0ba8fe commit e7b4023

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/ui/nll/closure-requirements/region-lbr1-does-outlive-lbr2-because-implied-bound.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
// compile-flags:-Zborrowck=mir -Zverbose
55
// compile-pass
6-
7-
#![allow(warnings)]
6+
// skip-codegen
87

98
fn foo<'a, 'b>(x: &'a &'b u32) -> &'a u32 {
109
&**x

0 commit comments

Comments
 (0)