testing::inject -> rstd::inject

This commit is contained in:
AF 2023-06-30 20:53:20 +00:00
parent 404fc8c802
commit 6e5302331c
4 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@ pub mod atomic;
pub mod cast;
pub mod collections;
pub mod fallible;
pub mod inject;
pub mod inlining;
mod local_origin;
pub mod nullable;

View File

@ -1,5 +1,4 @@
pub mod counted;
pub mod inject;
pub mod traced;
use std::{error::Error, fmt::Display, rc::Rc};

View File

@ -2,8 +2,8 @@ use std::cmp::max;
use crate::func::{context::*, *};
use crate::rcore::*;
use crate::rstd::inject::*;
use super::inject::*;
use super::*;
pub struct TestContextCounted;