Not sure if this is by design or not, but the following gives a compile error of "Decorators are not valid here" with TypeScript 1.8: ``` ts let testClass = new class { testMethod(@myDecorator date: Date): any { return date; } }(); ```