blob: 1d3dd158f2cd1bc546c663742c4499f9886d501f [file] [log] [blame]
// 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>