Skip to content

Commit 95ff642

Browse files
committed
tests: remove //@ pretty-expanded usages
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
1 parent f62753f commit 95ff642

File tree

656 files changed

+23
-662
lines changed

Some content is hidden

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

656 files changed

+23
-662
lines changed

tests/ui/abi/anon-extern-mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
#[link(name = "rust_test_helpers", kind = "static")]
54
extern "C" {

tests/ui/abi/c-stack-as-value.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
mod rustrt {
54
#[link(name = "rust_test_helpers", kind = "static")]

tests/ui/abi/cross-crate/anon-extern-mod-cross-crate-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22
//@ aux-build:anon-extern-mod-cross-crate-1.rs
3-
//@ pretty-expanded FIXME #23616
43

54
extern crate anonexternmod;
65

tests/ui/abi/cross-crate/duplicated-external-mods.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
//@ aux-build:anon-extern-mod-cross-crate-1.rs
33
//@ aux-build:anon-extern-mod-cross-crate-1.rs
4-
//@ pretty-expanded FIXME #23616
54

65
extern crate anonexternmod;
76

tests/ui/abi/extern/extern-pass-empty.rs

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

44
// Test a foreign function that accepts empty struct.
55

6-
//@ pretty-expanded FIXME #23616
76
//@ ignore-msvc
87
//@ ignore-emscripten emcc asserts on an empty struct as an argument
98

tests/ui/abi/foreign/invoke-external-foreign.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// successfully (and safely) invoke external, cdecl
66
// functions from outside the crate.
77

8-
//@ pretty-expanded FIXME #23616
98

109
extern crate foreign_lib;
1110

tests/ui/alias-uninit-value.rs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
// Regression test for issue #374
99

10-
//@ pretty-expanded FIXME #23616
1110

1211
enum sty { ty_nil, }
1312

tests/ui/array-slice-vec/cast-in-array-size.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33

44
// issues #10618 and #16382
5-
//@ pretty-expanded FIXME #23616
65

76
const SIZE: isize = 25;
87

tests/ui/array-slice-vec/empty-mutable-vec.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22

3-
//@ pretty-expanded FIXME #23616
43

54
#![allow(unused_mut)]
65

tests/ui/array-slice-vec/issue-15730.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
#![allow(unused_mut)]
33
#![allow(unused_variables)]
4-
//@ pretty-expanded FIXME #23616
54

65
fn main() {
76
let mut array = [1, 2, 3];

tests/ui/array-slice-vec/issue-18425.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Check that codegen doesn't ICE when codegenning an array repeat
33
// expression with a count of 1 and a non-Copy element type.
44

5-
//@ pretty-expanded FIXME #23616
65

76
fn main() {
87
let _ = [Box::new(1_usize); 1];

tests/ui/array-slice-vec/mut-vstore-expr.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
pub fn main() {
54
let _x: &mut [isize] = &mut [ 1, 2, 3 ];

tests/ui/array-slice-vec/vec-macro-with-brackets.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
#![allow(unused_variables)]
33

4-
//@ pretty-expanded FIXME #23616
54

65
macro_rules! vec [
76
($($e:expr),*) => ({
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
22

3-
//@ pretty-expanded FIXME #23616
43

54
pub fn main() { let _a = [0; 1 as usize]; }

tests/ui/array-slice-vec/vector-no-ann-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22

3-
//@ pretty-expanded FIXME #23616
43

54
pub fn main() {
65
let _quux: Box<Vec<usize>> = Box::new(Vec::new());

tests/ui/associated-types/associated-types-binding-in-where-clause.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
// Test equality constraints on associated types in a where clause.
33

4-
//@ pretty-expanded FIXME #23616
54

65
pub trait Foo {
76
type A;

tests/ui/associated-types/associated-types-conditional-dispatch.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// `Target=[A]`, then the impl marked with `(*)` is seen to conflict
66
// with all the others.
77

8-
//@ pretty-expanded FIXME #23616
98

109
use std::marker::PhantomData;
1110
use std::ops::Deref;

tests/ui/associated-types/associated-types-duplicate-binding-in-env-hrtb.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// (modulo bound lifetime names) appears in the environment
55
// twice. Issue #21965.
66

7-
//@ pretty-expanded FIXME #23616
87

98
fn foo<T>(t: T) -> i32
109
where T : for<'a> Fn(&'a u8) -> i32,

tests/ui/associated-types/associated-types-duplicate-binding-in-env.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Check that we do not report ambiguities when the same predicate
44
// appears in the environment twice. Issue #21965.
55

6-
//@ pretty-expanded FIXME #23616
76

87
trait Foo {
98
type B;

tests/ui/associated-types/associated-types-eq-obj.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
// Test equality constraints on associated types inside of an object type
33

4-
//@ pretty-expanded FIXME #23616
54

65
pub trait Foo {
76
type A;

tests/ui/associated-types/associated-types-issue-20371.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Test that we are able to have an impl that defines an associated type
33
// before the actual trait.
44

5-
//@ pretty-expanded FIXME #23616
65

76
impl X for f64 { type Y = isize; }
87
trait X { type Y; }

tests/ui/associated-types/associated-types-nested-projections.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#![allow(unused_variables)]
33
// Test that we can resolve nested projection types. Issue #20666.
44

5-
//@ pretty-expanded FIXME #23616
65

76
use std::slice;
87

tests/ui/associated-types/associated-types-nested-projections.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
warning: method `into_iter` is never used
2-
--> $DIR/associated-types-nested-projections.rs:16:8
2+
--> $DIR/associated-types-nested-projections.rs:15:8
33
|
44
LL | trait IntoIterator {
55
| ------------ method in this trait

tests/ui/associated-types/associated-types-normalize-in-bounds-binding.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Test that we normalize associated types that appear in a bound that
44
// contains a binding. Issue #21664.
55

6-
//@ pretty-expanded FIXME #23616
76

87
#![allow(dead_code)]
98

tests/ui/associated-types/associated-types-normalize-in-bounds-ufcs.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Test that we normalize associated types that appear in bounds; if
44
// we didn't, the call to `self.split2()` fails to type check.
55

6-
//@ pretty-expanded FIXME #23616
76

87
use std::marker::PhantomData;
98

tests/ui/associated-types/associated-types-normalize-in-bounds.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Test that we normalize associated types that appear in bounds; if
44
// we didn't, the call to `self.split2()` fails to type check.
55

6-
//@ pretty-expanded FIXME #23616
76

87
use std::marker::PhantomData;
98

tests/ui/associated-types/associated-types-projection-in-object-type.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// appear in associated type bindings in object types, which were not
77
// being properly flagged.
88

9-
//@ pretty-expanded FIXME #23616
109

1110
use std::ops::{Shl, Shr};
1211
use std::cell::RefCell;

tests/ui/associated-types/associated-types-projection-in-where-clause.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![allow(unused_variables)]
44
// Test a where clause that uses a non-normalized projection type.
55

6-
//@ pretty-expanded FIXME #23616
76

87
trait Int
98
{

tests/ui/associated-types/associated-types-qualified-path-with-trait-with-type-parameters.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ check-pass
2-
//@ pretty-expanded FIXME #23616
32

43
trait Foo<T> {
54
type Bar;

tests/ui/associated-types/associated-types-ref-from-struct.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
// Test associated type references in structure fields.
33

4-
//@ pretty-expanded FIXME #23616
54

65
trait Test {
76
type V;

tests/ui/associated-types/associated-types-region-erasure-issue-20582.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Regression test for #20582. This test caused an ICE related to
44
// inconsistent region erasure in codegen.
55

6-
//@ pretty-expanded FIXME #23616
76

87
struct Foo<'a> {
98
buf: &'a[u8]

tests/ui/associated-types/associated-types-resolve-lifetime.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ check-pass
2-
//@ pretty-expanded FIXME #23616
32

43
trait Get<T> {
54
fn get(&self) -> T;

tests/ui/associated-types/issue-19129-1.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ check-pass
2-
//@ pretty-expanded FIXME #23616
32

43
trait Trait<Input> {
54
type Output;

tests/ui/associated-types/issue-19129-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ check-pass
22
#![allow(unused_variables)]
3-
//@ pretty-expanded FIXME #23616
43

54
trait Trait<Input> {
65
type Output;

tests/ui/associated-types/issue-20763-1.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ check-pass
22
#![allow(dead_code)]
3-
//@ pretty-expanded FIXME #23616
43

54
trait T0 {
65
type O;

tests/ui/associated-types/issue-20763-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ check-pass
22
#![allow(dead_code)]
3-
//@ pretty-expanded FIXME #23616
43

54
trait T0 {
65
type O;

tests/ui/associated-types/issue-21363.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ check-pass
2-
//@ pretty-expanded FIXME #23616
32

43
#![no_implicit_prelude]
54

tests/ui/associated-types/issue-21726.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// subtyping of projection types that resulted in an unconstrained
55
// region, yielding region inference failures.
66

7-
//@ pretty-expanded FIXME #23616
87

98
fn main() { }
109

tests/ui/associated-types/issue-22828.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Test transitive analysis for associated types. Collected types
44
// should be normalized and new obligations generated.
55

6-
//@ pretty-expanded FIXME #23616
76

87
trait Foo {
98
type A;

tests/ui/attr-start.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
#![feature(start)]
54

tests/ui/attributes/attr-before-view-item.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
2-
//@ pretty-expanded FIXME #23616
32

43
#![feature(rustc_attrs)]
54
#![feature(test)]

tests/ui/attributes/attr-before-view-item2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
2-
//@ pretty-expanded FIXME #23616
32

43
#![feature(rustc_attrs)]
54
#![feature(test)]

tests/ui/attributes/attr-mix-new.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
2-
//@ pretty-expanded FIXME #23616
32

43
#![feature(rustc_attrs)]
54

tests/ui/attributes/method-attributes.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
22
//@ pp-exact - Make sure we print all the attributes
3-
//@ pretty-expanded FIXME #23616
43

54
#![feature(rustc_attrs)]
65

tests/ui/attributes/variant-attributes.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
22
//@ pp-exact - Make sure we actually print the attributes
3-
//@ pretty-expanded FIXME #23616
43

54
#![allow(non_camel_case_types)]
65
#![feature(rustc_attrs)]

tests/ui/autoref-autoderef/autoderef-and-borrow-method-receiver.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22
#![allow(dead_code)]
3-
//@ pretty-expanded FIXME #23616
43

54
struct Foo {
65
x: isize,

tests/ui/bench/issue-32062.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22

3-
//@ pretty-expanded FIXME #23616
43

54
fn main() {
65
let _ = test(Some(0).into_iter());

tests/ui/binding/inconsistent-lifetime-mismatch.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22
#![allow(dead_code)]
3-
//@ pretty-expanded FIXME #23616
43

54
fn foo(_: &[&str]) {}
65

tests/ui/binding/match-naked-record-expr.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
struct X { x: isize }
54

tests/ui/binding/match-naked-record.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ run-pass
22
#![allow(dead_code)]
3-
//@ pretty-expanded FIXME #23616
43

54
struct X { x: isize }
65

tests/ui/binding/match-path.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![allow(non_camel_case_types)]
44

55

6-
//@ pretty-expanded FIXME #23616
76

87
mod m1 {
98
pub enum foo { foo1, foo2, }

tests/ui/binding/match-pattern-simple.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#![allow(dead_code)]
33

44

5-
//@ pretty-expanded FIXME #23616
65

76
fn altsimple(f: isize) { match f { _x => () } }
87

tests/ui/binding/match-phi.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ run-pass
22
#![allow(dead_code)]
33
#![allow(unused_assignments)]
4-
//@ pretty-expanded FIXME #23616
54
#![allow(non_camel_case_types)]
65
#![allow(unused_variables)]
76

tests/ui/binding/match-range-static.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32
#![allow(non_upper_case_globals)]
43

54
const s: isize = 1;

tests/ui/binding/match-value-binding-in-guard-3291.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
//@ pretty-expanded FIXME #23616
32

43
fn foo(x: Option<Box<isize>>, b: bool) -> isize {
54
match x {

0 commit comments

Comments
 (0)