Add a test

This commit is contained in:
Anton Danilkin
2018-08-05 18:05:20 +03:00
committed by Alex Crichton
parent ebab7d9fc8
commit 5b66045aff
3 changed files with 17 additions and 0 deletions

View File

@ -87,6 +87,12 @@ global.Unforgeable = class Unforgeable {
}
};
global.GlobalMethod = class GlobalMethod {
constructor() {
this.m = () => 123;
}
};
global.PartialInterface = class PartialInterface {
get un() {
return 1;