~eda-qa/dhlib/main

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* <license>
 * This file is part of the dis-Emi-A HaXe Library. Copyright (c) edA-qa mort-ora-y
 * For full copyright and license information please refer to doc/license.txt.
 * </license> 
 */
//demonstrates nameclash in covnersion to AS3
class NameClash
{
	static public function main() 
	{
		var a : mathx.Matrix = new mathx.Matrix();
        var b : flash.geom.Matrix = new flash.geom.Matrix();
	}
}