I have a submodule which I would like to be used in two modules. Is it possible to use the one submodule in multiple modules and how to do that?
Asked
Active
Viewed 393 times
0
-
This question is perfectly clear and should not be closed. – predi Jul 02 '18 at 06:41
1 Answers
0
No. A submodule may only belong to one module and may be included only by its main module or a submodule that belongs to the same main module.
Submodules are partial modules that contribute definitions to a module. A module may include any number of submodules, but each submodule may belong to only one module.
A submodule MUST only be included by either the module to which it belongs or another submodule that belongs to that module.