Thread overview
[Issue 17434] [REG: 2.073] import lookup ignores public import.
May 25, 2017
Ketmar Dark
May 17, 2018
Walter Bright
Mar 31, 2022
Dlang Bot
Mar 31, 2022
Dlang Bot
Apr 08, 2022
Dlang Bot
May 25, 2017
https://issues.dlang.org/show_bug.cgi?id=17434

Ketmar Dark <ketmar@ketmar.no-ip.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ketmar@ketmar.no-ip.org

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

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
--------- imp.d ------------
module imp;

private import test.test1;
public  import test.test2;
--------- main.d -----------
module main;

import imp;

void main()
{
        test.test2.testing();
}
--------- test/test1.d -------
module test.test1;
--------- test/test2.d -------
module test.test2;

void testing()
{
        return;
}

--
March 31, 2022
https://issues.dlang.org/show_bug.cgi?id=17434

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #2 from Dlang Bot <dlang-bot@dlang.rocks> ---
@RazvanN7 updated dlang/dmd pull request #13934 "Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import." fixing this issue:

- Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import.

https://github.com/dlang/dmd/pull/13934

--
March 31, 2022
https://issues.dlang.org/show_bug.cgi?id=17434

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #13934 "Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import." was merged into stable:

- b1078a9d28538c9b65933c9115141ee5a893536c by RazvanN7:
  Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import.

https://github.com/dlang/dmd/pull/13934

--
April 08, 2022
https://issues.dlang.org/show_bug.cgi?id=17434

--- Comment #4 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #13962 "merge stable" was merged into master:

- 0f4d152e06630418a315dbb62e0824dd6eb1972d by Razvan Nitu:
  Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import. (#13934)

  Fix Issue 17434 -  [REG: 2.073] import lookup ignores public import.

  Signed-off-by: Dennis <dkorpel@users.noreply.github.com>
  Merged-on-behalf-of: Dennis <dkorpel@users.noreply.github.com>

https://github.com/dlang/dmd/pull/13962

--