mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
9 lines
160 B
Rust
9 lines
160 B
Rust
//@ check-fail
|
|
//@ compile-flags: --crate-type=lib
|
|
|
|
// Regression test for issue 142649
|
|
pub fn public() {
|
|
#[deprecated] 0
|
|
//~^ ERROR mismatched types
|
|
}
|