Closed
Description
At 5.0.0-beta.1
, We can success to compile the following code.
However, this code should not success the compilation because the code does not import rxjs/add/operator/map
.
import {Observable} from 'rxjs';
// The compilation should not success
// because this code does not import 'rxjs/add/operator/map'.
Observable.timer(1).map(() => {}).subscribe(() => {});
I'm not sure this problem is a higher priority issue, but I think this may be a problem.
@kwonoj @david-driscoll Do you recognize this problem?