~ubuntu-branches/ubuntu/lucid/gauche-c-wrapper/lucid

« back to all changes in this revision

Viewing changes to testsuite/array_qualifier.h

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2008-04-07 09:15:03 UTC
  • Revision ID: james.westby@ubuntu.com-20080407091503-wu0h414koe95kj4i
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
struct foo {
 
2
    int (*f1)(int a[static 10]);
 
3
    int (*f2)(int a[restrict]);
 
4
    int (*f3)(int a[const]);
 
5
    int (*f4)(int a[volatile]);
 
6
};