I try to use the specialization feature of the nightly and I have something I can explains why it's not working. Can somebody tell me why the last call of the following code do not take the specialization?
without the specialization I have the expected behavior:
Generic type parameters are implicitly constrained by Sized by default. But slice types are not Sized and not matching to the impl. You have to specify T: ?Sized to out-out Sized constraint.