Skip to content

Commit 4dc0f12

Browse files
committed
[TEMP] Bless tests
1 parent 544cd3f commit 4dc0f12

File tree

157 files changed

+416
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+416
-167
lines changed

tests/assembly-llvm/asm/arm-types.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#![crate_type = "rlib"]
1414
#![no_core]
1515
#![allow(asm_sub_register, non_camel_case_types)]
16+
#![allow(unconstructable_pub_struct)]
1617

1718
extern crate minicore;
1819
use minicore::*;

tests/assembly-llvm/asm/powerpc-types.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#![crate_type = "rlib"]
1818
#![no_core]
1919
#![allow(asm_sub_register, non_camel_case_types)]
20+
#![allow(unconstructable_pub_struct)]
2021

2122
extern crate minicore;
2223
use minicore::*;

tests/assembly-llvm/asm/s390x-types.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#![crate_type = "rlib"]
1313
#![no_core]
1414
#![allow(asm_sub_register, non_camel_case_types)]
15+
#![allow(unconstructable_pub_struct)]
1516

1617
extern crate minicore;
1718
use minicore::*;

tests/assembly-llvm/simd-bitmask.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#![feature(no_core, lang_items, repr_simd, intrinsics)]
1717
#![no_core]
1818
#![allow(non_camel_case_types)]
19+
#![allow(unconstructable_pub_struct)]
1920

2021
extern crate minicore;
2122
use minicore::*;

tests/assembly-llvm/simd-intrinsic-select.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#![feature(no_core, lang_items, repr_simd, intrinsics)]
1515
#![no_core]
1616
#![allow(non_camel_case_types)]
17+
#![allow(unconstructable_pub_struct)]
1718

1819
extern crate minicore;
1920
use minicore::*;

tests/codegen-llvm/is_val_statically_known.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#![feature(core_intrinsics)]
44
#![feature(f16, f128)]
5+
#![allow(unconstructable_pub_struct)]
56

67
use std::intrinsics::is_val_statically_known;
78

tests/codegen-llvm/simd/extract-insert-dyn.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#![no_std]
1111
#![crate_type = "lib"]
1212
#![allow(non_camel_case_types)]
13+
#![allow(unconstructable_pub_struct)]
1314

1415
// Test that `core::intrinsics::simd::{simd_extract_dyn, simd_insert_dyn}`
1516
// lower to an LLVM extractelement or insertelement operation.

tests/codegen-units/item-collection/generic-impl.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#![deny(dead_code)]
44
#![crate_type = "lib"]
5+
#![allow(unconstructable_pub_struct)]
56

67
struct Struct<T> {
78
x: T,

tests/codegen-units/item-collection/overloaded-operators.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#![deny(dead_code)]
44
#![crate_type = "lib"]
5+
#![allow(unconstructable_pub_struct)]
56

67
use std::ops::{Add, Deref, Index, IndexMut};
78

tests/crashes/130797.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//@ known-bug: #130797
2+
#![allow(unconstructable_pub_struct)]
23

34
trait Transform {
45
type Output<'a>;

0 commit comments

Comments
 (0)