Thread overview
[Issue 15903] module foo.bar is not accessible here, perhaps add 'static import foo.bar; (already there)
Apr 09, 2016
Timothee Cour
Apr 09, 2016
Timothee Cour
Apr 09, 2016
Timothee Cour
[Issue 15903] [REG 2.071] module foo.bar is not accessible here, perhaps add 'static import foo.bar; (already there)
Apr 09, 2016
Timothee Cour
Aug 08, 2016
Martin Nowak
Sep 12, 2016
Martin Nowak
Sep 12, 2016
Martin Nowak
May 05, 2017
calex
May 17, 2018
Walter Bright
April 09, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

Timothee Cour <timothee.cour2@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |timothee.cour2@gmail.com

--- Comment #1 from Timothee Cour <timothee.cour2@gmail.com> ---
[unfortunately seems hard to reduce]

--
April 09, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

--- Comment #2 from Timothee Cour <timothee.cour2@gmail.com> ---
perhaps related to issue/15900 ?

--
April 09, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

--- Comment #3 from Timothee Cour <timothee.cour2@gmail.com> ---
slightly different scenario but could be same root cause, with a minimal test case:

$dmd_071_X -o- -c D20160409T132716/main.d
Deprecation: module std.conv is not accessible here, perhaps add 'static import
std.conv;'

----
module D20160409T132716.main;

import D20160409T132716.test;
void fun(){
  auto b=std.conv.to!string(0);
}
----
module D20160409T132716.test;
public static import std.conv;
----

--
April 09, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

Timothee Cour <timothee.cour2@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|module foo.bar is not       |[REG 2.071] module foo.bar
                   |accessible here, perhaps    |is not accessible here,
                   |add 'static import foo.bar; |perhaps add 'static import
                   |(already there)             |foo.bar; (already there)

--
June 07, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

TeddyBear12311@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |TeddyBear12311@gmail.com

--- Comment #4 from TeddyBear12311@gmail.com ---
Same problem after loading up some library code that worked in 2.68. I have several compiler problems now:


Deprecation: module std.traits is not accessible here, perhaps add 'static import std.traits;'

same for std.algorithm.

Of course, std.traits is already imported.

mixin(1) Deprecation: Foo.min is not visible from module Bar

min is suppose to be standard Math.min. Used to work fine, now it's not "visible".

Same for max.

--
August 08, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

Martin Nowak <code@dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |code@dawg.eu
           Assignee|nobody@puremagic.com        |code@dawg.eu

--- Comment #5 from Martin Nowak <code@dawg.eu> ---
Issue 15900 got fixed in 2.071.2-b1, could you please retest.

--
September 12, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

Martin Nowak <code@dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Hardware|x86                         |All
                 OS|Mac OS X                    |All

--- Comment #6 from Martin Nowak <code@dawg.eu> ---
Can't reproduce the issues of comment 0 and comment 4, please retest and
provide a complete test case.
Comment 3 is clearly a duplicate of issue 15000.

--
September 12, 2016
https://issues.dlang.org/show_bug.cgi?id=15903

--- Comment #7 from Martin Nowak <code@dawg.eu> ---
(In reply to Martin Nowak from comment #6)
> Comment 3 is clearly a duplicate of issue 15000.

issue 15900

--
May 05, 2017
https://issues.dlang.org/show_bug.cgi?id=15903

calex <calex+bugzilla-mail@aristoweb.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |calex+bugzilla-mail@aristow
                   |                            |eb.net

--- Comment #8 from calex <calex+bugzilla-mail@aristoweb.net> ---
Any reasons this issue shouldn't be closed?

The issue this was suspected to duplicate was marked as resolved, and I can't reproduce Comment 3 on DMD v2.073.0.

(Just trying to help dlang cut through the 2,984 open DMD issues. They add up
:))

--
May 17, 2018
https://issues.dlang.org/show_bug.cgi?id=15903

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|---                         |FIXED

--- Comment #9 from Walter Bright <bugzilla@digitalmars.com> ---
Seems to be fixed. Reopen if not.

--