-
-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Issue 17451 - ICE in ddmd/declaration.d(2179)
- Loading branch information
1 parent
a6289e8
commit a98029d
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| /* TEST_OUTPUT: | ||
| --- | ||
| fail_compilation/test17451.d(22): Error: undefined identifier `allocator` | ||
| fail_compilation/test17451.d(23): Error: `long` has no effect in expression `false` | ||
| fail_compilation/test17451.d(30): Error: variable test17451.HashMap!(ThreadSlot).HashMap.__lambda2.v size of type ThreadSlot is invalid | ||
| fail_compilation/test17451.d(44): Error: template instance test17451.HashMap!(ThreadSlot) error instantiating | ||
| --- | ||
| */ | ||
|
|
||
| // https://issues.dlang.org/show_bug.cgi?id=17451 | ||
|
|
||
| interface ManualEvent {} | ||
|
|
||
| interface EventDriver { | ||
| ManualEvent createManualEvent() ; | ||
| } | ||
|
|
||
| struct ArraySet(Key) | ||
| { | ||
| ~this() | ||
| { | ||
| try allocator; | ||
| catch false; // should never happen | ||
| } | ||
| } | ||
|
|
||
| struct HashMap(TValue) | ||
| { | ||
| alias Value = TValue; | ||
| static if ({ Value v; }) {} | ||
| } | ||
|
|
||
| struct Task {} | ||
|
|
||
| class Libevent2Driver : EventDriver { | ||
| Libevent2ManualEvent createManualEvent() {} | ||
| } | ||
|
|
||
| struct ThreadSlot { | ||
| ArraySet!Task tasks; | ||
| } | ||
|
|
||
| class Libevent2ManualEvent { | ||
| HashMap!ThreadSlot m_waiters; | ||
| } |