llvm-project/clang/test/Lexer/minimize_source_to_dependency_directives_include.c
Fangrui Song f34a5205aa [clang,test] Convert text files from CRLF to LF
Skip files with intentional CRLF line endings.
2024-05-03 10:23:53 -07:00

9 lines
307 B
C

// Test double slashes in #include directive along with angle brackets. Previously, this was interpreted as comments.
// RUN: %clang_cc1 -DTEST -print-dependency-directives-minimized-source %s 2>&1 | FileCheck %s
#include "a//b.h"
#include <a//b.h>
// CHECK: #include "a//b.h"
// CHECK: #include <a//b.h>