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 3 4 #include "a/b.h" 5 #include <a/b.h> 6 7 // CHECK: #include "a//b.h" 8 // CHECK: #include <a//b.h> 9