module_4570_dep1.js 533 B

1234567891011
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. //tests import of module that has two different names
  6. import Thing1 from './module_4570_dep2.js';
  7. import Thing2 from '././module_4570_dep2.js';
  8. Thing1();
  9. Thing2();