Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Modules/pr27739.cpp @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: rm -rf %t |
2 // RUN: %clang_cc1 -std=c++11 -internal-externc-isystem %S/Inputs/PR27739 -verify %s | |
3 // RUN: %clang_cc1 -std=c++11 -fmodules -fmodule-map-file=%S/Inputs/PR27739/module.modulemap -fmodules-cache-path=%t -internal-externc-isystem %S/Inputs/PR27739/ -verify %s | |
4 | |
5 #include "DataInputHandler.h" | |
6 | |
7 void DataInputHandler::AddTree() { | |
8 fInputTrees[(char*)""]; | |
9 fExplicitTrainTest[(char*)""]; | |
10 } | |
11 | |
12 // expected-no-diagnostics |