Add failing spec for remote static members

This commit is contained in:
Kevin Sawicki 2016-08-16 10:32:32 -07:00
parent 5cc61089d9
commit 9e4665fbc4
2 changed files with 25 additions and 0 deletions

15
spec/fixtures/module/remote-static.js vendored Normal file
View file

@ -0,0 +1,15 @@
class Foo {
static foo() {
return 3
}
baz() {
return 123
}
}
Foo.bar = 'baz'
module.exports = {
Foo: Foo
}