brintos

brintos / llvm-project-archived public Read only

0
0
Text · 307 B · 1d3dd15 Raw
9 lines · c
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 %s3 4#include "a//b.h"5#include <a//b.h>6 7// CHECK: #include "a//b.h"8// CHECK: #include <a//b.h>9