view nocompile/align_05.d @ 18:33a25c1e1cfc

various corrections/by-passes of known problems
author thomask
date Fri, 08 Oct 2004 21:12:15 +0000
parents 1ed6616fe905
children 5f98d4a33d49
line wrap: on
line source

// according to the documentation align can only be applied to struct members
align (2) class MyClass{
	int a;
	byte* b;
	int c(){	
		return 8;
	}
}