monogon-dev / intellij-cue

IntelliJ support for the CUE language.
Apache License 2.0
37 stars 3 forks source link

Error reported when using an alias #54

Closed arjantop-cai closed 2 years ago

arjantop-cai commented 2 years ago

The editor marks C= as an error, but it is correct and working syntax:

#Data: {
    s: string
}

foo: C={
    #Data

    s2: C.s + "foo"
}