We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b8d10 commit 14a51d2Copy full SHA for 14a51d2
crates/proc_macro_srv/src/dylib.rs
@@ -92,7 +92,7 @@ impl TryFrom<RustCInfo> for ProcMacroABI {
92
type Error = LoadProcMacroDylibError;
93
94
fn try_from(info: RustCInfo) -> Result<Self, Self::Error> {
95
- if info.version.0 < 1 {
+ if info.version.0 != 1 {
96
Err(LoadProcMacroDylibError::UnsupportedABI)
97
} else if info.version.1 < 47 {
98
0 commit comments