error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:13:13
   |
LL |         Self::default()
   |             ^^^^^^^^^^^ help: remove this call to `default`
   |
   = note: `-D clippy::default-constructed-unit-structs` implied by `-D warnings`

error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:55:31
   |
LL |             inner: PhantomData::default(),
   |                               ^^^^^^^^^^^ help: remove this call to `default`

error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:128:33
   |
LL |     let _ = PhantomData::<usize>::default();
   |                                 ^^^^^^^^^^^ help: remove this call to `default`

error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:129:42
   |
LL |     let _: PhantomData<i32> = PhantomData::default();
   |                                          ^^^^^^^^^^^ help: remove this call to `default`

error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:130:55
   |
LL |     let _: PhantomData<i32> = std::marker::PhantomData::default();
   |                                                       ^^^^^^^^^^^ help: remove this call to `default`

error: use of `default` to create a unit struct
  --> $DIR/default_constructed_unit_structs.rs:131:23
   |
LL |     let _ = UnitStruct::default();
   |                       ^^^^^^^^^^^ help: remove this call to `default`

error: aborting due to 6 previous errors