view undefined/const_24.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents a4e907daaf85
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	xs0 <xs0@xs0.com>
// @date@	2005-08-11
// @uri@	news:ddfegl$2uof$1@digitaldaemon.com

//
// http://www.digitalmars.com/d/attribute.html
//
// (1)
// The const attribute declares constants that can be evaluated at
// compile time.
//
// (2)
// A const declaration without an initializer must be initialized in a
// constructor (for class fields) or in a static constructor (for static
// class members, or module variable declarations).
//

module dstress.undefined.const_24;

class Class{
	const int i;
	
	this(){
		i=dynamicInt; // illegal(1) or legal(2) ?
	}
}

int dynamicInt;

int main(char[][] args){
	dynamicInt=args.length;
	
	Class c = new Class();
	assert(c.i==args.length);
	
	return 0;
}