Moved bouncer back top package.
This commit is contained in:
23
tests/Run.hx
Normal file
23
tests/Run.hx
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user