Bug 14116 – Assertion failure: 'p->isPkgMod == PKGmodule' on line 143 in file 'import.c'
Status
RESOLVED
Resolution
FIXED
Severity
major
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2015-02-02T19:55:00Z
Last change time
2015-02-03T05:16:25Z
Keywords
ice, pull
Assigned to
nobody
Creator
rswhite4
Comments
Comment #0 by rswhite4 — 2015-02-02T19:55:37Z
test/test.d
----
module test.test;
void foo() {
}
----
test/foo.d
----
module test.foo;
import test;
void main() {
}
----
Compiled with dmd test.d foo.d -vgc -wi on Windows 8.1 64 Bit
results in
----
foo.d(3): Error: module test.test from file test.d must be imported with 'import
test.test;'
Assertion failure: 'p->isPkgMod == PKGmodule' on line 143 in file 'import.c'
abnormal program termination
----