mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
168 B
C
9 lines
168 B
C
// https://issues.dlang.org/show_bug.cgi?id=22885
|
|
|
|
typedef int T;
|
|
void test()
|
|
{
|
|
typedef T* T; // should declare a new T that is an int*
|
|
int i;
|
|
T p = &i;
|
|
}
|