[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Lexer / minimize_source_to_dependency_directives_include.c
blob1d3dd158f2cd1bc546c663742c4499f9886d501f
1 // Test double slashes in #include directive along with angle brackets. Previously, this was interpreted as comments.
2 // RUN: %clang_cc1 -DTEST -print-dependency-directives-minimized-source %s 2>&1 | FileCheck %s
4 #include "a//b.h"
5 #include <a//b.h>
7 // CHECK: #include "a//b.h"
8 // CHECK: #include <a//b.h>