/*
	TEST.C Jeffrey Johnson 16-09-2003

	An error is generated by this code.
	To make it work: shorten the variable name, or remove the volatile declaration
*/

#include <io.h>
#include <signal.h>
#include <iomacros.h>
#include <msp430x14x.h>

volatile unsigned char VariableWithLongName;

int main(void)
{
	while(1){
		VariableWithLongName=0;
		VariableWithLongName<<=1;
	}
}

