``` import {Component} from '@angular/core'; @Component({ selector: 'left-nav', template:` <div [ngClass]="'first second'">aaaaabbbbbcccc</div> ` }) export class LeftNav { constructor(){} } ``` ``` Can't bind to 'ngClass' since it isn't a known property of 'div'. (" <div [ERROR ->][ngClass]="">aaaaabbbbbcccc</div> "): LeftNav@1:9 ``` If I remove `[ngClass]="'first second'"` it works ok. window 10 Angular version: 2.0.0 Browser: chrome Language: TypeScript 2.0.2 Node (for AoT issues): 5.7.0