mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
a2c0b38897
To make it easier to verify that the output snapshots have been migrated faithfully, this change adds some temporary helper code that lets us avoid having to completely re-bless the existing snapshots. A later change in this PR will then re-bless the tests and remove the temporary helper code.
20 lines
642 B
Rust
20 lines
642 B
Rust
// FIXME #110395
|
|
// ignore-linux
|
|
|
|
// Validates coverage now works with optimizations
|
|
// compile-flags: -C opt-level=3
|
|
|
|
#![allow(unused_assignments, unused_variables)]
|
|
|
|
// aux-build:used_crate.rs
|
|
extern crate used_crate;
|
|
|
|
fn main() {
|
|
used_crate::used_function();
|
|
let some_vec = vec![1, 2, 3, 4];
|
|
used_crate::used_only_from_bin_crate_generic_function(&some_vec);
|
|
used_crate::used_only_from_bin_crate_generic_function("used from bin uses_crate.rs");
|
|
used_crate::used_from_bin_crate_and_lib_crate_generic_function(some_vec);
|
|
used_crate::used_with_same_type_from_bin_crate_and_lib_crate_generic_function("interesting?");
|
|
}
|