Merge pull request #454 from BBasile/opaque_templatized_structs

fix #441 - Add a regression test for opaque templatized structs
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-03-24 05:45:36 +01:00 committed by GitHub
commit f5180ddb9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
stdin 22

View File

@ -0,0 +1 @@
struct Foo(T); struct Bar(T); Foo!0 foo; Bar!0 bar;

5
tests/tc_opaque_structs/run.sh Executable file
View File

@ -0,0 +1,5 @@
set -e
set -u
../../bin/dcd-client $1 file.d --symbolLocation -c43 > actual1.txt
diff actual1.txt expected1.txt