mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-10-31 15:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule Livebook.TestModules.BadInspect do
 | |
|   defstruct []
 | |
| 
 | |
|   defimpl Inspect do
 | |
|     @dialyzer {:nowarn_function, inspect: 2}
 | |
| 
 | |
|     def inspect(%Livebook.TestModules.BadInspect{}, _opts) do
 | |
|       :bad_return
 | |
|     end
 | |
|   end
 | |
| end
 |