include-what-you-use/tests/cxx/using_unused-baseclass.h

14 lines
384 B
C++

//===--- using_unused-baseclass.h - test input file for iwyu --------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
class Base {
public:
void Method();
};