mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 21:53:42 -06:00
Added tests.
This commit is contained in:
parent
1ebfac0494
commit
0d56a0545c
@ -0,0 +1,18 @@
|
||||
|
||||
class Foo {
|
||||
static enumMember = Enum.A;
|
||||
static objLiteralMember = ObjLiteral.A;
|
||||
static namespaceMember = Namespace.A;
|
||||
}
|
||||
|
||||
enum Enum {
|
||||
A
|
||||
}
|
||||
|
||||
const ObjLiteral = {
|
||||
A: 0
|
||||
};
|
||||
|
||||
namespace Namespace {
|
||||
export let A = 0
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user