commit | 0a0c3e72ce42f84f361c285e6963d44213ab6bea | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Tue Oct 05 20:41:58 2010 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Tue Oct 05 20:41:58 2010 +0000 |
tree | 21e144777dac13e9a58e78f4f2807868e8b553b4 | |
parent | 97475834207bf5abb5b58534f783c9b71d4b9df1 [diff] [blame] |
Serialize the "inline" bit for namespaces. Fixes <rdar://problem/8515069>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115667 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/PCH/namespaces.cpp b/test/PCH/namespaces.cpp index b8a22e5..6dd4473 100644 --- a/test/PCH/namespaces.cpp +++ b/test/PCH/namespaces.cpp
@@ -40,3 +40,6 @@ using N1::used_cls; used_cls s1; used_cls* ps1 = &s1; + +inline namespace N4 { } +struct MemberOfN4 *mn4;