7 lines
330 B
C++
7 lines
330 B
C++
|
|
module DepMod;
|
||
|
|
|
||
|
|
// Implementation unit of the DepMod interface. Because it declares
|
||
|
|
// `module DepMod;` it gains an intra-config module dependency on the DepMod
|
||
|
|
// interface, so its compile waits on DepMod's `compiled` flag — the exact
|
||
|
|
// flag a stale recursive reset used to clobber (issue #16).
|
||
|
|
int dep_value() { return 21; }
|