================================================================================
basic/import1b
================================================================================

import "modulepath:/com/apple/pkl/core/snippets/imported.pkl"
import "modulepath:/com/apple/pkl/core/snippets/imported.pkl" as other

bar = 1
res1 = imported.foo
res2 = imported.bar

res3 = other.foo
res4 = other.bar

--------------------------------------------------------------------------------

(module
  (importClause
    (stringConstant))
  (importClause
    (stringConstant)
    (identifier))
  (classProperty
    (identifier)
    (intLiteral))
  (classProperty
    (identifier)
    (propertyCallExpr
      (variableExpr
        (identifier))
      (identifier)))
  (classProperty
    (identifier)
    (propertyCallExpr
      (variableExpr
        (identifier))
      (identifier)))
  (classProperty
    (identifier)
    (propertyCallExpr
      (variableExpr
        (identifier))
      (identifier)))
  (classProperty
    (identifier)
    (propertyCallExpr
      (variableExpr
        (identifier))
      (identifier))))
