ClobberingReload.jl icon indicating copy to clipboard operation
ClobberingReload.jl copied to clipboard

reload for interactive work + Autoreload successor

Results 2 ClobberingReload.jl issues
Sort by recently updated
recently updated
newest added

You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...

In this code, changes to `SubMod.x` are ignored. ```julia module TestMod module SubMod export x x = 8 end using .SubMod end ``` It's the `using` that's problematic. `SubMod.x` works...