]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Lexer/utf8-char-literal.cpp
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / Lexer / utf8-char-literal.cpp
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -fsyntax-only -verify %s
2
3 int array0[u'ñ' == u'\xf1'? 1 : -1];
4 int array1['ñ' !=  u'\xf1'? 1 : -1];