[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CoverageMapping / empty-destructor.cpp
blob840c4b26554e9226b12191371139907556a4d590
1 // RUN: %clang_cc1 -mllvm -emptyline-comment-coverage=false -triple i686-windows -emit-llvm-only -fcoverage-mapping -dump-coverage-mapping -fprofile-instrument=clang %s | FileCheck %s
3 struct A {
4 virtual ~A();
5 };
7 // CHECK: ?PR32761@@YAXXZ:
8 // CHECK-NEXT: File 0, [[@LINE+1]]:16 -> [[@LINE+3]]:2 = #0
9 void PR32761() {
10 A a;