xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/const-ptr-int-ptr-cast.c (revision 5ba302fdeaa9e153d58b5dcaef42d660aedee92e)
1 // RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
2 // expected-no-diagnostics
3 
4 #include <stdint.h>
5 
6 char *a = (void*)(uintptr_t)(void*)&a;
7