xref: /aosp_15_r20/external/clang/test/SemaCXX/old-style-cast.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: %clang_cc1 -triple x86_64-apple-darwin -fsyntax-only -verify -Wold-style-cast %s
2*67e74705SXin Li 
test1()3*67e74705SXin Li void test1() {
4*67e74705SXin Li   long x = (long)12; // expected-warning {{use of old-style cast}}
5*67e74705SXin Li   (long)x; // expected-warning {{use of old-style cast}} expected-warning {{expression result unused}}
6*67e74705SXin Li   (void**)x; // expected-warning {{use of old-style cast}} expected-warning {{expression result unused}}
7*67e74705SXin Li   long y = static_cast<long>(12);
8*67e74705SXin Li   (void)y;
9*67e74705SXin Li   typedef void VOID;
10*67e74705SXin Li   (VOID)y;
11*67e74705SXin Li }
12