mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
b4bdb56f86
Leverage `anstyle-svg`, as `cargo` does now, to emit `.svg` files instead of `.stderr` files for tests that explicitly enable color output. This will make reviewing changes to the graphical output of tests much more human friendly.
26 lines
655 B
Rust
26 lines
655 B
Rust
// Make sure "highlighted" code is colored purple
|
||
|
||
//@ compile-flags: --error-format=human --color=always
|
||
//@ error-pattern:[35mfor<'a> [0m
|
||
//@ edition:2018
|
||
// Temporary until next release:
|
||
//@ ignore-stage2
|
||
|
||
use core::pin::Pin;
|
||
use core::future::Future;
|
||
use core::any::Any;
|
||
|
||
fn query(_: fn(Box<(dyn Any + Send + '_)>) -> Pin<Box<(
|
||
dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static
|
||
)>>) {}
|
||
|
||
fn wrapped_fn<'a>(_: Box<(dyn Any + Send)>) -> Pin<Box<(
|
||
dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static
|
||
)>> {
|
||
Box::pin(async { Err("nope".into()) })
|
||
}
|
||
|
||
fn main() {
|
||
query(wrapped_fn);
|
||
}
|