~ubuntu-branches/ubuntu/edgy/mcpp/edgy

« back to all changes in this revision

Viewing changes to test-t/i_mbident.t

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2004-10-23 23:18:57 UTC
  • Revision ID: james.westby@ubuntu.com-20041023231857-93z8ff2dgp7m7dpy
Tags: upstream-2.4.1
Import upstream version 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* i_mbident.t: Multi-byte characters in identifier and pp-number.  */
 
2
 
 
3
/* Multi-byte characters in identifier. */
 
4
#define �ޥ���  ����
 
5
#define �ؿ��ͥޥ���(����1, ����2)  ����1 ## ����2
 
6
/*  ����;   */
 
7
    �ޥ���;
 
8
/*  ������̾��; */
 
9
    �ؿ��ͥޥ���(������, ̾��);
 
10
 
 
11
/* Multi-byte character in pp-number.   */
 
12
#define mkname( a)  a ## 1��
 
13
#define mkstr( a)   xmkstr( a)
 
14
#define xmkstr( a)  # a
 
15
/*  "abc1��"    */
 
16
    char *  mkstr( mkname( abc));
 
17