For a change, without tikz:
\documentclass{article}
\usepackage{amsmath,amssymb,graphicx}
\newcommand\neline{%
\raisebox{1ex}{\rotatebox{-20}{\ensuremath\diagup}}}
\newcommand\seline{%
\raisebox{-1ex}{\rotatebox{20}{\ensuremath\diagdown}}}
\newlength{\mylength}
\settowidth{\mylength}{\neline}
\begin{document}
\[
\text{If } c=0\text{, then } x = \neline\kern-\mylength\seline \begin{array}{l}0 \\ -b/a \end{array}
\]
\end{document}

As suggested by Enrico, it is better to use \makebox[0pt][l]{\neline}, then we don't have to measure the width. Further we can merge \neline and \seline to make a single macro:
\documentclass{article}
\usepackage{amsmath,amssymb,graphicx}
%
\newcommand\neline{%
\makebox[0pt][l]{\raisebox{1ex}{\rotatebox{-20}{\ensuremath\diagup}}}
\raisebox{-1ex}{\rotatebox{20}{\ensuremath\diagdown}}}
%
\begin{document}
\[
\text{If } c=0\text{, then } x = \neline \begin{array}{l}0 \\ -b/a \end{array}
\]
\end{document}
casesenvironment fromamsmath? See e.g. http://tex.stackexchange.com/questions/9065/large-braces-for-specifying-values-of-variables-by-condition – Torbjørn T. Nov 03 '12 at 19:15If $c=0$, then $x\in\{0,-b/a \}$. – Gonzalo Medina Nov 03 '12 at 19:18