dmd/compiler/test/compilable/test22885.c
2022-07-09 18:53:07 +02:00

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;
}