types: list: remove unused imports

This commit is contained in:
2022-07-22 00:08:53 -07:00
parent 72a66dbff4
commit cdcc1fbbdd
3 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
use crate::compound::peano::{LessThan, P0, P1, P2, P3, Peano, PeanoNonZero, PNext};
use crate::compound::peano::{P0, P1, P2, P3, Peano, PeanoNonZero, PNext};
#[cfg(feature = "serde")]
use serde::{Serialize, Deserialize};

View File

@@ -1,4 +1,4 @@
use crate::compound::peano::{LessThan, P0, Peano, PNext, PeanoNonZero};
use crate::compound::peano::{P0, Peano, PeanoNonZero};
#[cfg(feature = "serde")]
use serde::{Serialize, Deserialize};

View File

@@ -1,4 +1,4 @@
use crate::compound::peano::{P0, Peano, PNext};
use crate::compound::peano::{P0, PNext};
#[cfg(feature = "serde")]
use serde::{Serialize, Deserialize};
@@ -123,7 +123,6 @@ impl<Args: TuplePrims> List<Args> {
mod test {
use super::*;
use crate::compound::peano::{P1, P2};
use core::cell::Cell;
#[test]
fn get() {