Skip to content

Instantly share code, notes, and snippets.

@stensonowen
Created April 10, 2018 22:17
Show Gist options
  • Save stensonowen/76bd0b5fcc6bc5099b3da9e22324df3a to your computer and use it in GitHub Desktop.
Save stensonowen/76bd0b5fcc6bc5099b3da9e22324df3a to your computer and use it in GitHub Desktop.
#![allow(unused)]
#![allow(non_snake_case, non_camel_case_types)]
use std::mem::uninitialized;
use std::ops::Sub;
fn sorry<'ll, 've>(know: &'ll have, involved: &'ve ()) -> Result<Vec<()>,()> {
let (What, you, I): (_What, _You, _I) = unsafe { uninitialized() };
Ok(vec![
What.the.fuck.did.you.just.fucking.say.about.me, you.little.bitch?,
(|I:&'ll have| you)(know).I.graduated.top.of.my.class.In.the.Navy.Seals,
and(|I:&'ve been| involved).In.numerous.secret.raids.on.Al-Quaeda,
and(I).have.over.300.confirmed.kills
])
}
struct _What { the: _The }
struct _The { fuck: _Fuck, Navy: _Navy }
struct _Fuck { did: _Did }
struct _Did { you: _You }
struct _You { just: _Just, little: _Little, I: Box<_I> }
struct _Just { fucking: _Fucking }
struct _Fucking { say: _Say }
struct _Say { about: _About }
struct _About { me: () }
struct _Little { bitch: Result<(),()> }
struct have;
struct _I { graduated: _Graduated }
struct _Graduated { top: _Top }
struct _Top { of: _Of }
struct _Of { my: _My }
struct _My { class: _Class }
struct _Class { In: _In, have: _Have }
struct _In { the: _The, numerous: _Numerous }
struct _Navy { Seals: () }
fn and<T>(t: T) -> _Class { unsafe { uninitialized() } }
type involved = ();
struct been;
struct _Numerous { secret: _Secret }
struct _Secret { raids: _Raids }
struct _Raids { on: _On }
struct _On { Al: _Al }
struct _Al;
struct Quaeda;
impl Sub<Quaeda> for _Al {
type Output = ();
fn sub(self, rhs: Quaeda) {}
}
type O = ();
struct _Have { over: (
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 40
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 80
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 120
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 160
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 200
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 240
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, // 280
O,O,O,O,O,O,O,O,O,O, O,O,O,O,O,O,O,O,O,O, Hundred // 300
) }
struct Hundred { confirmed: _Confirmed }
struct _Confirmed { kills: () }
fn main(){}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment