Migrate compile-pass annotations to build-pass

This commit is contained in:
Yuki Okushi
2019-07-03 06:30:28 +09:00
parent 848e0a23f3
commit c004451a20
711 changed files with 716 additions and 716 deletions

View File

@@ -1,4 +1,4 @@
// compile-pass
// build-pass (FIXME(62277): could be check-pass?)
#![allow(bare_trait_objects)]

View File

@@ -1,4 +1,4 @@
// compile-pass
// build-pass (FIXME(62277): could be check-pass?)
// compile-flags: -Z parse-only
impl <*const u8>::AssocTy {} // OK

View File

@@ -1,4 +1,4 @@
// compile-pass
// build-pass (FIXME(62277): could be check-pass?)
#![feature(box_syntax)]
#![allow(bare_trait_objects)]

View File

@@ -1,6 +1,6 @@
// Fixes issue where `+` in generics weren't parsed if they were part of a `+=`.
// compile-pass
// build-pass (FIXME(62277): could be check-pass?)
struct Whitespace<T: Clone + = ()> { t: T }
struct TokenSplit<T: Clone += ()> { t: T }

View File

@@ -1,4 +1,4 @@
// compile-pass
// build-pass (FIXME(62277): could be check-pass?)
fn main() {
let _ = "Foo"_;