xref: /netbsd-src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/unknown_gc.d (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
1 // { dg-require-effective-target shared }
2 // { dg-options "-shared-libphobos" }
3 // { dg-shouldfail "unknowngc" }
4 // { dg-output "No GC was initialized, please recheck the name of the selected GC \\('unknowngc'\\)." }
5 extern(C) __gshared string[] rt_options = [ "gcopt=gc:unknowngc" ];
6 
main()7 void main()
8 {
9 }
10