2022-06-10 15:50:06 +01:00
|
|
|
// compile-flags: -Z unstable-options
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
|
|
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
|
|
|
|
|
|
|
extern crate rustc_errors;
|
|
|
|
extern crate rustc_macros;
|
|
|
|
extern crate rustc_session;
|
|
|
|
extern crate rustc_span;
|
|
|
|
|
|
|
|
use rustc_errors::{AddSubdiagnostic, Diagnostic, DiagnosticBuilder, ErrorGuaranteed, fluent};
|
|
|
|
use rustc_macros::{SessionDiagnostic, SessionSubdiagnostic};
|
|
|
|
use rustc_session::{parse::ParseSess, SessionDiagnostic};
|
|
|
|
use rustc_span::Span;
|
|
|
|
|
|
|
|
#[derive(SessionDiagnostic)]
|
2022-06-23 14:51:44 +01:00
|
|
|
#[error(parser::expect_path)]
|
2022-06-10 15:50:06 +01:00
|
|
|
struct DeriveSessionDiagnostic {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(SessionSubdiagnostic)]
|
|
|
|
#[note(slug = "note")]
|
|
|
|
struct Note {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct UntranslatableInSessionDiagnostic;
|
|
|
|
|
|
|
|
impl<'a> SessionDiagnostic<'a, ErrorGuaranteed> for UntranslatableInSessionDiagnostic {
|
|
|
|
fn into_diagnostic(self, sess: &'a ParseSess) -> DiagnosticBuilder<'a, ErrorGuaranteed> {
|
|
|
|
sess.struct_err("untranslatable diagnostic")
|
|
|
|
//~^ ERROR diagnostics should be created using translatable messages
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TranslatableInSessionDiagnostic;
|
|
|
|
|
|
|
|
impl<'a> SessionDiagnostic<'a, ErrorGuaranteed> for TranslatableInSessionDiagnostic {
|
|
|
|
fn into_diagnostic(self, sess: &'a ParseSess) -> DiagnosticBuilder<'a, ErrorGuaranteed> {
|
|
|
|
sess.struct_err(fluent::parser::expect_path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct UntranslatableInAddSubdiagnostic;
|
|
|
|
|
|
|
|
impl AddSubdiagnostic for UntranslatableInAddSubdiagnostic {
|
|
|
|
fn add_to_diagnostic(self, diag: &mut Diagnostic) {
|
|
|
|
diag.note("untranslatable diagnostic");
|
|
|
|
//~^ ERROR diagnostics should be created using translatable messages
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TranslatableInAddSubdiagnostic;
|
|
|
|
|
|
|
|
impl AddSubdiagnostic for TranslatableInAddSubdiagnostic {
|
|
|
|
fn add_to_diagnostic(self, diag: &mut Diagnostic) {
|
|
|
|
diag.note(fluent::typeck::note);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn make_diagnostics<'a>(sess: &'a ParseSess) {
|
|
|
|
let _diag = sess.struct_err(fluent::parser::expect_path);
|
|
|
|
//~^ ERROR diagnostics should only be created in `SessionDiagnostic`/`AddSubdiagnostic` impls
|
|
|
|
|
|
|
|
let _diag = sess.struct_err("untranslatable diagnostic");
|
|
|
|
//~^ ERROR diagnostics should only be created in `SessionDiagnostic`/`AddSubdiagnostic` impls
|
|
|
|
//~^^ ERROR diagnostics should be created using translatable messages
|
|
|
|
}
|