const-ptr-int-ptr-cast.c revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3#include <stdint.h>
4
5char *a = (void*)(uintptr_t)(void*)&a;
6