-
-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests] add failing tests for known unbound ttp hxb issues
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
tests/server/test/templates/hxb/UnboundAbstractUnderlyingAnonField.hx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
function main() {} | ||
|
||
typedef Foo = { | ||
function get<TField>():Null<TField>; | ||
} | ||
|
||
abstract HaxeMemento(Foo) { | ||
public function getInner<TAbstract>():Null<TAbstract> { | ||
return this.get(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
class Main { | ||
static function main() { | ||
function foo<T>(arr:Array<T>) sortDesc(arr); | ||
|
||
foo([""]); | ||
foo([42]); | ||
} | ||
|
||
@:generic | ||
public inline static function sortDesc<T>(array : Array<T>) {} | ||
} |