summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/static-members
Commit message (Collapse)AuthorAge
* Fix front-end handling of generic static methods (#1319)Tim Foley2020-04-14
* Fix front-end handling of generic static methods The front-end logic that was testing if a member was usable as a static member neglected to unwrap any generic-ness and look at the declaration inside (the parser currently puts all modifiers on the inner declaration instead of the outer generic). The test case included here is not a full compute test so that it only runs the front-end checking logic (where we had the bug). * fixup: tabs->spaces