Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. struct S<T> {
  2. x: *const T
  3. }
  4. impl<T> S<T> {
  5. fn new() -> Self {
  6. Self { x:std::ptr::null() }
  7. }
  8. }
  9.  
  10. fn main() {
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement