1*67e74705SXin Li // RUN: %clang_cc1 -triple x86_64-apple-darwin -fsyntax-only -verify -Wold-style-cast %s 2*67e74705SXin Li test1()3*67e74705SXin Livoid 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