Index: tools/clang/plugins/tests/virtual_base_method_also_final.cpp |
diff --git a/tools/clang/plugins/tests/virtual_base_method_also_final.cpp b/tools/clang/plugins/tests/virtual_base_method_also_final.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9c61770ba06f4230786ec1f588d0fa432ebf422b |
--- /dev/null |
+++ b/tools/clang/plugins/tests/virtual_base_method_also_final.cpp |
@@ -0,0 +1,4 @@ |
+class A { |
+ public: |
+ virtual void F() final {} |
+}; |