diff options
Diffstat (limited to 'tests/expectations/using.rs')
-rw-r--r-- | tests/expectations/using.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/expectations/using.rs b/tests/expectations/using.rs index adc1e61b..dbb6c84f 100644 --- a/tests/expectations/using.rs +++ b/tests/expectations/using.rs @@ -6,9 +6,9 @@ #[repr(C)] #[derive(Debug, Copy, Clone)] -pub struct Struct_Point<T> { +pub struct Point<T> { pub x: T, pub y: T, } -pub type IntPoint2D = Struct_Point<::std::os::raw::c_int>; -pub type IntVec2D = Struct_Point<::std::os::raw::c_int>; +pub type IntPoint2D = Point<::std::os::raw::c_int>; +pub type IntVec2D = Point<::std::os::raw::c_int>; |