Moved bouncer back top package.

This commit is contained in:
back2dos
2013-06-27 13:43:04 +02:00
parent 3a92c22790
commit b7c421cad2
5 changed files with 32 additions and 10 deletions

23
tests/Run.hx Normal file
View File

@@ -0,0 +1,23 @@
package ;
#if !macro
import haxe.unit.TestCase;
import haxe.unit.TestRunner;
import neko.Lib;
#else
import haxe.macro.*;
using tink.macro.Tools;
#end
class Run {
#if !macro
static var tests:Array<TestCase> = [
];
static function main() {
test();//it compiles!!!
}
#end
macro static function test() {
return macro null;
}
}