Skip to content

Commit 8148f2e

Browse files
committed
Drive-by fix
1 parent cc55845 commit 8148f2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/bound.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use self::util::{AssertClone, AssertCopy};
1010
#[test]
1111
fn bound() {
1212
#[derive_where(Clone, Copy; T)]
13-
struct Test<T, U>(T, std::marker::PhantomData<U>);
13+
struct Test<T, U>(T, PhantomData<U>);
1414

1515
let test_1 = Test(42, PhantomData::<()>);
1616

0 commit comments

Comments
 (0)