mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Merge pull request #409 from Maytha8/std-tests
Add feature gate to tests that use std
This commit is contained in:
commit
8f2a76b4ba
2 changed files with 3 additions and 0 deletions
|
@ -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() {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#![cfg(feature = "std")]
|
||||
|
||||
use core::fmt::Display;
|
||||
use ref_cast::RefCast;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue