diff options
Diffstat (limited to 'tests/ui/const-generics/min_const_generics/self-ty-in-const-1.rs')
-rw-r--r-- | tests/ui/const-generics/min_const_generics/self-ty-in-const-1.rs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ui/const-generics/min_const_generics/self-ty-in-const-1.rs b/tests/ui/const-generics/min_const_generics/self-ty-in-const-1.rs new file mode 100644 index 000000000..9ef619365 --- /dev/null +++ b/tests/ui/const-generics/min_const_generics/self-ty-in-const-1.rs @@ -0,0 +1,25 @@ +trait Foo { + fn t1() -> [u8; std::mem::size_of::<Self>()]; //~ERROR generic parameters +} + +struct Bar<T>(T); + +impl Bar<u8> { + fn t2() -> [u8; std::mem::size_of::<Self>()] { todo!() } // ok +} + +impl<T> Bar<T> { + fn t3() -> [u8; std::mem::size_of::<Self>()] {} //~ERROR generic `Self` +} + +trait Baz { + fn hey(); +} + +impl Baz for u16 { + fn hey() { + let _: [u8; std::mem::size_of::<Self>()]; // ok + } +} + +fn main() {} |