From de004660726acb148bf0022706b7019ca560172d Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 16 Apr 2019 12:26:18 -0700 Subject: tests -> test --- test/struct-copy.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/struct-copy.c (limited to 'test/struct-copy.c') diff --git a/test/struct-copy.c b/test/struct-copy.c new file mode 100644 index 0000000..33084aa --- /dev/null +++ b/test/struct-copy.c @@ -0,0 +1,8 @@ +struct s { + char s[5]; + float f; +} x; + +void f(void) { + struct s y = x; +} -- cgit v1.2.3