blob: da665c3fd130728629463625e0f56d743193b435 [file] [log] [blame]
Joey Gouly758c4d82013-11-14 18:26:10 +00001// RUN: %clang_cc1 %s -verify
2// expected-no-diagnostics
3
4constant char * __constant x = "hello world";
5
6void foo(__constant char * a) {
7
8}
9
10void bar() {
11 foo("hello world");
12 foo(x);
13}