All pastes #2127533 Raw Edit

Unnamed

public text v1 · immutable
#2127533 ·published 2012-03-13 05:05 UTC
rendered paste body
#include <stdio.h>

int test = 'test';

int main() {
	switch (test) {
	   case 'test':
		printf("here\n");
		break;
	};

	return 0;
}