1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -ast-dump %s | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc void foo1(void*); 4*f4a2713aSLionel Sambuc void foo2(void* const); 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc void bar() { 8*f4a2713aSLionel Sambuc // CHECK: FunctionDecl {{.*}} <line:{{.*}}, line:{{.*}}> bar 'void ()' 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc foo1(0); 11*f4a2713aSLionel Sambuc // CHECK: ImplicitCastExpr {{.*}} <col:{{.*}}> 'void *' <NullToPointer> 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc foo2(0); 14*f4a2713aSLionel Sambuc // CHECK: ImplicitCastExpr {{.*}} <col:{{.*}}> 'void *' <NullToPointer> 15*f4a2713aSLionel Sambuc } 16