1struct s {
2	struct {
3		int u, v;
4	} a, b;
5};
6
7static const struct s s;
8
9static int foo(int c)
10{
11	return c && s.b.v;
12}
13
14/*
15 * check-name: cost-deref-nested
16 * check-command: test-linearize -fdump-ir $file
17 *
18 * check-output-ignore
19 * check-output-excludes: cbr
20 */
21