-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
254f3d5
commit 67a4153
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//------------------------------------------------------------------------------ | ||
// CLING - the C++ LLVM-based InterpreterG :) | ||
// | ||
// This file is dual-licensed: you can choose to license it under the University | ||
// of Illinois Open Source License or the GNU Lesser General Public License. See | ||
// LICENSE.TXT for details. | ||
|
||
//------------------------------------------------------------------------------ | ||
// RUN: cat %s | %cling | FileCheck %s | ||
|
||
#include <iostream> | ||
#if __cplusplus >= 202002L | ||
#include <version> | ||
#endif | ||
|
||
#ifndef __cpp_lib_source_location | ||
// Hack to prevent failure if __cpp_lib_source_location feature does not exist! | ||
std::cout << "(std::source_location) "; | ||
std::cout << "CHECK_SRCLOC:42:std::source_location getsrcloc()\n"; | ||
#else | ||
#include <source_location> | ||
std::source_location getsrcloc() { | ||
#line 42 "CHECK_SRCLOC" | ||
return std::source_location::current(); | ||
} | ||
getsrcloc() | ||
#endif | ||
// CHECK: (std::source_location) | ||
// CHECK: CHECK_SRCLOC:42:std::source_location getsrcloc() |