mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
Fix 23752 - ImportC: can't take address of dereferenced void pointer (#14970)
This commit is contained in:
parent
23514c6256
commit
2ad82c66d1
2 changed files with 13 additions and 0 deletions
|
@ -190,3 +190,8 @@ const typeof(testTypeofA) testTypeofB = 0;
|
|||
_Static_assert(sizeof(testTypeofB) == sizeof(short), "17");
|
||||
|
||||
/*************************************************/
|
||||
|
||||
// https://issues.dlang.org/show_bug.cgi?id=23752
|
||||
void *c23752 = &*((void*)(0));
|
||||
|
||||
/*************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue