kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/typescript/testdata/any.ts (about)

     1  export {}
     2  
     3  //- @x defines/binding X
     4  let x: any;
     5  
     6  // ".zzz" is a reference off an "any", so it will have no Symbol
     7  // and there's no useful cross-referencing to be done.  This test
     8  // passes if there's no crash.
     9  //- @x ref X
    10  x.zzz;