Add feature gate to tests that use std

This commit is contained in:
Maytham Alsudany 2025-01-10 18:43:36 +08:00
parent 349f6960ff
commit 693a6cddad
No known key found for this signature in database
GPG key ID: D597897206C5F07F
2 changed files with 3 additions and 0 deletions

View file

@ -90,6 +90,7 @@ fn test_rustup() {
}
// Regression test for https://github.com/dtolnay/thiserror/issues/335
#[cfg(feature = "std")]
#[test]
#[allow(non_snake_case)]
fn test_assoc_type_equality_constraint() {

View file

@ -1,3 +1,5 @@
#![cfg(feature = "std")]
use core::fmt::Display;
use ref_cast::RefCast;
use std::path::{Path, PathBuf};