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