### Terraform Version ``` Terraform v0.12.10 + provider.local v1.3.0 ``` ### Terraform Configuration Files ```hcl locals { a = map(1, 1) } ``` ### Debug Output https://gist.github.com/alxrem/16972d40bbfe8df2fbecac6720a9b5a8 ### Crash Output https://gist.github.com/alxrem/af55977e452fbd3c6be0c192c05bc3bd ### Expected Behavior Error message from syntax parser. ### Actual Behavior Panic ### Steps to Reproduce <!-- Please list the full steps required to reproduce the issue, for example: 1. `terraform init` 2. `terraform apply` --> ``` cat <<EOF >bug.tf locals { a = map(1, 1) } EOF terraform init terraform plan ```