Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
attributes
/
crate-name-mismatch.rs
blob: 0c343d70b9cff9709495f5852cb019962749acff [
file
] [
log
] [
blame
]
//! Checks error handling for mismatched `--crate-name` and `#![crate_name]` values.
//@ compile-flags: --crate-name foo
#![
crate_name
=
"bar"
]
//~^ ERROR: `--crate-name` and `#[crate_name]` are required to match, but `foo` != `bar`
fn
main
()
{}