``` rust trait A<T: B>{} trait B<T: A> {} ``` boom. ``` Segmentation fault application terminated with error code 139 ``` Edit: HAH! ``` rust trait A<T:A> {} ``` ``` Segmentation fault application terminated with error code 139 ```