fix miri-opt tests
This commit is contained in:
parent
0541b4e034
commit
b730bc9f20
4 changed files with 17 additions and 21 deletions
|
@ -577,16 +577,12 @@ impl MissingDoc {
|
||||||
let attrs = cx.tcx.hir().attrs(cx.tcx.hir().local_def_id_to_hir_id(def_id));
|
let attrs = cx.tcx.hir().attrs(cx.tcx.hir().local_def_id_to_hir_id(def_id));
|
||||||
let has_doc = attrs.iter().any(has_doc);
|
let has_doc = attrs.iter().any(has_doc);
|
||||||
if !has_doc {
|
if !has_doc {
|
||||||
cx.struct_span_lint(
|
cx.struct_span_lint(MISSING_DOCS, cx.tcx.def_span(def_id), |lint| {
|
||||||
MISSING_DOCS,
|
lint.build(fluent::lint::builtin_missing_doc)
|
||||||
cx.tcx.sess.source_map().guess_head_span(sp),
|
.set_arg("article", article)
|
||||||
|lint| {
|
.set_arg("desc", desc)
|
||||||
lint.build(fluent::lint::builtin_missing_doc)
|
.emit();
|
||||||
.set_arg("article", article)
|
});
|
||||||
.set_arg("desc", desc)
|
|
||||||
.emit();
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
// MIR for `Test::X` 0 mir_map
|
// MIR for `Test::X` 0 mir_map
|
||||||
|
|
||||||
fn Test::X(_1: usize) -> Test {
|
fn Test::X(_1: usize) -> Test {
|
||||||
let mut _0: Test; // return place in scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
let mut _0: Test; // return place in scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
Deinit(_0); // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
Deinit(_0); // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
((_0 as X).0: usize) = move _1; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
((_0 as X).0: usize) = move _1; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
discriminant(_0) = 0; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
discriminant(_0) = 0; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
return; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
return; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
// MIR for `Test::X` 0 mir_map
|
// MIR for `Test::X` 0 mir_map
|
||||||
|
|
||||||
fn Test::X(_1: usize) -> Test {
|
fn Test::X(_1: usize) -> Test {
|
||||||
let mut _0: Test; // return place in scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
let mut _0: Test; // return place in scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
|
|
||||||
bb0: {
|
bb0: {
|
||||||
Deinit(_0); // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
Deinit(_0); // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
((_0 as X).0: usize) = move _1; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
((_0 as X).0: usize) = move _1; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
discriminant(_0) = 0; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
discriminant(_0) = 0; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
return; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:13
|
return; // scope 0 at $DIR/unusual-item-types.rs:16:5: 16:6
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ LL | const VAL: T;
|
||||||
| ------------ `VAL` from trait
|
| ------------ `VAL` from trait
|
||||||
...
|
...
|
||||||
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
|
||||||
|
|
||||||
error: constant expression depends on a generic parameter
|
error: constant expression depends on a generic parameter
|
||||||
--> $DIR/ice-6252.rs:13:9
|
--> $DIR/ice-6252.rs:13:9
|
||||||
|
|
Loading…
Add table
Reference in a new issue