You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
352 B
6 lines
352 B
// RUN: %clang_cc1 -triple x86_64-pc-windows-gnu %s -fsyntax-only -verify -fms-extensions -Wno-microsoft -std=c++11
|
|
|
|
// "novtable" is ignored except with the Microsoft C++ ABI.
|
|
// MinGW uses the Itanium C++ ABI so check that it is ignored there.
|
|
struct __declspec(novtable) S {}; // expected-warning{{__declspec attribute 'novtable' is not supported}}
|