Clang Project

clang_source_code/test/CodeCompletion/end-of-file.cpp
1// Check that clang does not crash when completing at the last char in the
2// buffer.
3// NOTE: This file must *NOT* have newline at the end.
4// RUN: %clang_cc1 -code-completion-at=%s:7:2 %s | FileCheck %s
5// CHECK: COMPLETION: foo
6using foo = int***;
7f