1
Fork 0

compiler: use rustc_abi in rustc_ast_*

This commit is contained in:
Jubilee Young 2024-11-02 19:33:28 -07:00
parent eddfe8f503
commit 221416deea
6 changed files with 19 additions and 16 deletions

View file

@ -3225,7 +3225,7 @@ pub enum Extern {
///
/// E.g. `extern fn foo() {}`.
///
/// This is just `extern "C"` (see `rustc_target::spec::abi::Abi::FALLBACK`).
/// This is just `extern "C"` (see `rustc_abi::ExternAbi::FALLBACK`).
Implicit(Span),
/// An explicit extern keyword was used with an explicit ABI.
///