1*67e74705SXin Li // RUN: %clang_cc1 -triple x86_64-pc-windows-gnu %s -fsyntax-only -verify -fms-extensions -Wno-microsoft -std=c++11 2*67e74705SXin Li 3*67e74705SXin Li // "novtable" is ignored except with the Microsoft C++ ABI. 4*67e74705SXin Li // MinGW uses the Itanium C++ ABI so check that it is ignored there. 5*67e74705SXin Li struct __declspec(novtable) S {}; // expected-warning{{__declspec attribute 'novtable' is not supported}} 6