1ea88969fSopenharmony_ciuse proc_macro_error::*;
2ea88969fSopenharmony_ci
3ea88969fSopenharmony_ci#[test]
4ea88969fSopenharmony_ci#[should_panic = "proc-macro-error API cannot be used outside of"]
5ea88969fSopenharmony_cifn missing_attr_emit() {
6ea88969fSopenharmony_ci    emit_call_site_error!("You won't see me");
7ea88969fSopenharmony_ci}
8ea88969fSopenharmony_ci
9ea88969fSopenharmony_ci#[test]
10ea88969fSopenharmony_ci#[should_panic = "proc-macro-error API cannot be used outside of"]
11ea88969fSopenharmony_cifn missing_attr_abort() {
12ea88969fSopenharmony_ci    abort_call_site!("You won't see me");
13ea88969fSopenharmony_ci}
14