mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
199 B
Rust
16 lines
199 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo(_: &[&str]) {}
|
|
|
|
fn bad(a: &str, b: &str) {
|
|
foo(&[a, b]);
|
|
}
|
|
|
|
fn good(a: &str, b: &str) {
|
|
foo(&[a, b]);
|
|
}
|
|
|
|
fn main() {}
|