| Index: test/browser/runtime_tests.js
|
| diff --git a/test/browser/runtime_tests.js b/test/browser/runtime_tests.js
|
| index 32dc5e0941f1af41ea5dad82701452c3ff94bb51..d27564c9c88d006aac39c6475cabe2cb13b45d54 100644
|
| --- a/test/browser/runtime_tests.js
|
| +++ b/test/browser/runtime_tests.js
|
| @@ -262,4 +262,16 @@ suite('instanceOf', () => {
|
| //checkType((x) => x, type((void _(x)) {}));
|
| });
|
|
|
| + test('mixins', () => {
|
| + let c = collection;
|
| + var s1 = new (c.SplayTreeSet$(String))();
|
| +
|
| + checkType(s1, c.IterableMixin);
|
| + checkType(s1, c.IterableMixin$(String));
|
| + checkType(s1, c.IterableMixin$(int), false);
|
| +
|
| + checkType(s1, c.SetMixin);
|
| + checkType(s1, c.SetMixin$(String));
|
| + checkType(s1, c.SetMixin$(int), false);
|
| + });
|
| });
|
|
|