What happens if browserModule is used in feature module?

If the users import BrowserModule into a lazy loaded feature module, Angular returns an error telling them to use CommonModule instead. Because BrowserModule’s providers are for the entire app so it should only be in the root module, not in feature module. Whereas Feature modules only need the common directives in CommonModule.