Azure / typespec-azure

About TypeSpec Azure Libraries
https://azure.github.io/typespec-azure/
MIT License
9 stars 29 forks source link

[Bug]: type graph view crash for azure playground #1016

Closed tadelesh closed 1 month ago

tadelesh commented 1 month ago

Describe the bug

image

Reproduction

  1. import typespec-azure-resource-manager
  2. click type graph view
  3. crash

Checklist

timotheeguerin commented 1 month ago

Seems to be coming from something in azure-core, repro by just importing azure-core

timotheeguerin commented 1 month ago

issue seems to be when using a default value

model Foo {
 a: int32 = 123;
}