1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc// <rdar://problem/10465114> 4*f4a2713aSLionel Sambucstruct overwrite_string_struct { 5*f4a2713aSLionel Sambuc char L[3]; 6*f4a2713aSLionel Sambuc int M; 7*f4a2713aSLionel Sambuc} overwrite_string[] = { { { @encode(void**) }, 1 }, [0].L[1] = 'x'}; 8*f4a2713aSLionel Sambuc// CHECK: [3 x i8] c"^xv", i32 1 9