Merge pull request #409 from Maytha8/std-tests

Add feature gate to tests that use std
This commit is contained in:
David Tolnay 2025-01-10 05:30:24 -08:00 committed by GitHub
commit 8f2a76b4ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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};