dontcallmedom / webidl-checker

This is the source code for the W3C on-line WebIDL checker, a tool verify the correctness of WebIDL fragments embedded in HTML documents.
4 stars 2 forks source link

recursive typedef declarations should be disallowed #14

Open michaelficarra opened 9 years ago

michaelficarra commented 9 years ago

These are reported as valid, but should not be:

typedef a[] a;
typedef a b;
typedef b a;