File tree 3 files changed +7
-9
lines changed
tests/rustdoc/synthetic_auto
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -585,10 +585,10 @@ jobs:
585
585
strategy :
586
586
matrix :
587
587
include :
588
- - name : dist-x86_64 -linux
588
+ - name : dist-aarch64 -linux
589
589
env :
590
590
CODEGEN_BACKENDS : " llvm,cranelift"
591
- os : ubuntu-20.04-16core-64gb
591
+ os : ubuntu-20.04-8core-32gb
592
592
timeout-minutes : 600
593
593
runs-on : " ${{ matrix.os }}"
594
594
steps :
Original file line number Diff line number Diff line change @@ -734,11 +734,11 @@ jobs:
734
734
strategy :
735
735
matrix :
736
736
include :
737
- - &dist-x86_64 -linux
738
- name : dist-x86_64 -linux
737
+ - &dist-aarch64 -linux
738
+ name : dist-aarch64 -linux
739
739
env :
740
740
CODEGEN_BACKENDS : llvm,cranelift
741
- << : *job-linux-16c
741
+ << : *job-linux-8c
742
742
743
743
744
744
master :
Original file line number Diff line number Diff line change 1
- // FIXME(fmease, #119216): Reenable this test!
2
- //@ ignore-test
3
-
4
1
pub struct Inner < T > {
5
2
field : T ,
6
3
}
12
9
}
13
10
14
11
// @has no_redundancy/struct.Outer.html
12
+ // FIXME(fmease): Reverse the order of bounds again.
15
13
// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
16
- // "impl<T> Send for Outer<T>where T: Send + Copy "
14
+ // "impl<T> Send for Outer<T>where T: Copy + Send "
17
15
pub struct Outer < T > {
18
16
inner_field : Inner < T > ,
19
17
}
You can’t perform that action at this time.
0 commit comments