diff --git a/tests/expectations/tests/issue-544-stylo-creduce-2.rs b/tests/expectations/tests/issue-544-stylo-creduce-2.rs deleted file mode 100644 index 4e2de0cf47..0000000000 --- a/tests/expectations/tests/issue-544-stylo-creduce-2.rs +++ /dev/null @@ -1,31 +0,0 @@ -#![allow( - dead_code, - non_snake_case, - non_camel_case_types, - non_upper_case_globals -)] - -#[repr(C)] -#[derive(Debug, Copy, Clone)] -pub struct Foo -where - T: __bindgen_has_inner_type_Associated, -{ - pub member: Foo_SecondAlias, - pub _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell>, -} -pub type Foo_FirstAlias = - ::Associated; -pub type Foo_SecondAlias = Foo>; -impl Default for Foo { - fn default() -> Self { - let mut s = ::std::mem::MaybeUninit::::uninit(); - unsafe { - ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); - s.assume_init() - } - } -} -pub trait __bindgen_has_inner_type_Associated { - type Associated: std::fmt::Debug + Default + Copy + Clone; -} diff --git a/tests/headers/issue-544-stylo-creduce-2.hpp b/tests/headers/issue-544-stylo-creduce-2.hpp deleted file mode 100644 index f3467f4528..0000000000 --- a/tests/headers/issue-544-stylo-creduce-2.hpp +++ /dev/null @@ -1,8 +0,0 @@ -// bindgen-flags: -- -std=c++14 - -template -struct Foo { - template using FirstAlias = typename T::Associated; - template using SecondAlias = Foo>; - SecondAlias member; -};