brintos

brintos / llvm-project-archived public Read only

0
0
Text · 328 B · d33eab8 Raw
15 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o /dev/null2// RUN: %clang_cc1 %s -emit-llvm -o /dev/null -x c++3// This file contains UTF-8; please do not fix!4 5 6extern void \u00FCber(int);7extern void \U000000FCber(int); // redeclaration, no warning8 9void goodCalls(void) {10  \u00FCber(0);11  \u00fcber(1);12  über(2);13  \U000000FCber(3);14}15