Considering the following example setup: ```ts @Get("/foo") @Get("/foo/bar") handleAnything() { // logic to handle either `/foo` or `/foo/bar` } ``` Expected: should work Actual: doesn't work (only `/foo` is registered) Affected version: `0.13.0`