Home | History | Annotate | Download | only in Modules
      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
     13