summaryrefslogtreecommitdiffstats
path: root/test/Lexer/utf8-char-literal.cpp
blob: c4ea5fc3c3e9dcbb9fbe6bc668e8cff0cf97bbc9 (plain)
1
2
3
4
// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -fsyntax-only -verify %s

int array0[u'ñ' == u'\xf1'? 1 : -1];
int array1['ñ' !=  u'\xf1'? 1 : -1];