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 cast;
pub mod collections; pub mod collections;
pub mod fallible; pub mod fallible;
pub mod inject;
pub mod inlining; pub mod inlining;
mod local_origin; mod local_origin;
pub mod nullable; pub mod nullable;

View File

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

View File

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