#### Bug, feature request, or proposal: Bug #### What is the expected behavior? Angular recommends, when using reactive forms, to set `disabled` on the `FormControl` rather than the input element in the template:  #### What is the current behavior? Setting `disabled: true` on a `FormControl` bound to `md-input` will cause the app to crash with error: > TypeError: this.valueAccessor.setDisabledState is not a function This does not happen to the native text input. #### What are the steps to reproduce? [Open this plunker ](http://plnkr.co/edit/0Pw4kwS6jJ8CI5nKh5On?p=preview)and look at the console. If in `AppComponent` you replace: ``` nameCtrl = new FormControl({value:'Jane', disabled:true}); ``` With ``` nameCtrl = new FormControl('Jane'); ``` The error will go away #### Which versions of Angular, Material, OS, browsers are affected? `Angular 2 rc 6` with `Material alpha 8.1`